List commodities & compute
curl --request GET \
--url https://www.prometheus.services/api/v1/commodities \
--header 'X-API-KEY: <api-key>'import requests
url = "https://www.prometheus.services/api/v1/commodities"
headers = {"X-API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-KEY': '<api-key>'}};
fetch('https://www.prometheus.services/api/v1/commodities', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://www.prometheus.services/api/v1/commodities",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-KEY: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://www.prometheus.services/api/v1/commodities"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-KEY", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://www.prometheus.services/api/v1/commodities")
.header("X-API-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.prometheus.services/api/v1/commodities")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-KEY"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"commodities": [
{
"symbol": "H100",
"name": "NVIDIA H100 SXM",
"short_name": "H100 SXM",
"asset_class": "compute",
"category": "gpu",
"tier": "reference",
"parent_symbol": null,
"host_code": null,
"instance_family": null,
"vendor": "NVIDIA",
"unit": "USD per GPU-hour",
"attributes": {
"basis": "on-demand, transaction-weighted",
"source": "Ornn OCPI",
"vram_gb": 80,
"form_factor": "SXM5",
"architecture": "Hopper",
"interconnect": "NVLink"
},
"provider": "ORNN",
"premium_vs_reference": null,
"spec": {
"chip": "GH100",
"tdp_w": 700,
"die_mm2": 814,
"vram_gb": 80,
"fp8_tflops": 1979,
"process_nm": 5,
"form_factor": "SXM5",
"fp16_tflops": 989.4,
"launch_date": "2022-09-20",
"memory_type": "HBM3",
"spec_source": "Epoch AI, Machine Learning Hardware (CC-BY 4.0)",
"architecture": "Hopper",
"manufacturer": "NVIDIA",
"mem_bus_bits": 5120,
"bandwidth_gbs": 3350,
"transistors_m": 80000,
"spec_source_url": "https://resources.nvidia.com/en-us-tensor-core/nvidia-tensor-core-gpu-datasheet",
"launch_price_usd": 33600,
"launch_price_note": "Epoch: no official MSRP; $269k DGX H100 ÷ 8 (SemiAnalysis, May 2023)."
},
"hosts": [
{
"host_code": "AWS",
"host_name": "Amazon Web Services",
"company_ticker": "AMZN",
"company_name": "AMAZON COM INC",
"company_website": "https://www.amazon.com/",
"instance_family": "p5.48xlarge",
"gpus_per_instance": 8,
"vram_variant_gb": 80,
"notes": "EC2 P5, 8× H100 SXM, 3.2 Tbps EFA",
"url": "https://aws.amazon.com/ec2/instance-types/p5/"
}
],
"last_price": 2.8675,
"last_price_date": "2026-08-23",
"return_1d": null,
"return_ytd": null,
"return_1y": null,
"volatility_30d": 0.69768230015857,
"price_rows": 96,
"days_stale": 1,
"gflops_per_watt": 1413.4285714285713,
"usd_per_pflop_hour": 2.8982211441277546,
"launch_usd_per_tflops": 33.95997574287447,
"closes": [
3.2
],
"display_order": 10
}
]
}{
"error": "<string>",
"code": "unauthenticated"
}{
"error": "<string>",
"code": "unauthenticated"
}{
"error": "<string>",
"code": "unauthenticated"
}{
"error": "<string>",
"code": "unauthenticated"
}Market Data
List commodities & compute
Commodity and compute instruments (including GPU rental prices).
GET
/
api
/
v1
/
commodities
List commodities & compute
curl --request GET \
--url https://www.prometheus.services/api/v1/commodities \
--header 'X-API-KEY: <api-key>'import requests
url = "https://www.prometheus.services/api/v1/commodities"
headers = {"X-API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-KEY': '<api-key>'}};
fetch('https://www.prometheus.services/api/v1/commodities', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://www.prometheus.services/api/v1/commodities",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-KEY: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://www.prometheus.services/api/v1/commodities"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-KEY", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://www.prometheus.services/api/v1/commodities")
.header("X-API-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.prometheus.services/api/v1/commodities")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-KEY"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"commodities": [
{
"symbol": "H100",
"name": "NVIDIA H100 SXM",
"short_name": "H100 SXM",
"asset_class": "compute",
"category": "gpu",
"tier": "reference",
"parent_symbol": null,
"host_code": null,
"instance_family": null,
"vendor": "NVIDIA",
"unit": "USD per GPU-hour",
"attributes": {
"basis": "on-demand, transaction-weighted",
"source": "Ornn OCPI",
"vram_gb": 80,
"form_factor": "SXM5",
"architecture": "Hopper",
"interconnect": "NVLink"
},
"provider": "ORNN",
"premium_vs_reference": null,
"spec": {
"chip": "GH100",
"tdp_w": 700,
"die_mm2": 814,
"vram_gb": 80,
"fp8_tflops": 1979,
"process_nm": 5,
"form_factor": "SXM5",
"fp16_tflops": 989.4,
"launch_date": "2022-09-20",
"memory_type": "HBM3",
"spec_source": "Epoch AI, Machine Learning Hardware (CC-BY 4.0)",
"architecture": "Hopper",
"manufacturer": "NVIDIA",
"mem_bus_bits": 5120,
"bandwidth_gbs": 3350,
"transistors_m": 80000,
"spec_source_url": "https://resources.nvidia.com/en-us-tensor-core/nvidia-tensor-core-gpu-datasheet",
"launch_price_usd": 33600,
"launch_price_note": "Epoch: no official MSRP; $269k DGX H100 ÷ 8 (SemiAnalysis, May 2023)."
},
"hosts": [
{
"host_code": "AWS",
"host_name": "Amazon Web Services",
"company_ticker": "AMZN",
"company_name": "AMAZON COM INC",
"company_website": "https://www.amazon.com/",
"instance_family": "p5.48xlarge",
"gpus_per_instance": 8,
"vram_variant_gb": 80,
"notes": "EC2 P5, 8× H100 SXM, 3.2 Tbps EFA",
"url": "https://aws.amazon.com/ec2/instance-types/p5/"
}
],
"last_price": 2.8675,
"last_price_date": "2026-08-23",
"return_1d": null,
"return_ytd": null,
"return_1y": null,
"volatility_30d": 0.69768230015857,
"price_rows": 96,
"days_stale": 1,
"gflops_per_watt": 1413.4285714285713,
"usd_per_pflop_hour": 2.8982211441277546,
"launch_usd_per_tflops": 33.95997574287447,
"closes": [
3.2
],
"display_order": 10
}
]
}{
"error": "<string>",
"code": "unauthenticated"
}{
"error": "<string>",
"code": "unauthenticated"
}{
"error": "<string>",
"code": "unauthenticated"
}{
"error": "<string>",
"code": "unauthenticated"
}Authorizations
apiKeycognitoIdToken
Prometheus API key (pk_live_...), created on the Developers page in the terminal. Also accepted as Authorization: Bearer pk_live_....
Response
OK
The response is of type object.
⌘I