Get Commodity Prices
curl --request GET \
--url https://api.orbbit.co/v1/commodities/prices \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.orbbit.co/v1/commodities/prices"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.orbbit.co/v1/commodities/prices', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"slug": "butter-cme-spot-close-daily",
"unit": "USD/lb",
"points": [
{
"date": "2026-09-18",
"value": 2.5125
},
{
"date": "2026-09-21",
"value": 2.5
},
{
"date": "2026-09-22",
"value": 2.4875
}
]
}
]
}{
"error": {
"type": "invalid_request",
"message": "Unknown series: butter-spot"
}
}{
"error": {
"type": "unauthorized",
"message": "Missing or malformed Authorization: Bearer header"
}
}{
"error": {
"type": "forbidden",
"message": "This key is not scoped to get-commodity-prices"
}
}Commodities
Get Commodity Prices
Dated prices for one or many catalog series, in the order asked.
Requires the get-commodity-prices scope.
GET
/
v1
/
commodities
/
prices
Get Commodity Prices
curl --request GET \
--url https://api.orbbit.co/v1/commodities/prices \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.orbbit.co/v1/commodities/prices"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.orbbit.co/v1/commodities/prices', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"slug": "butter-cme-spot-close-daily",
"unit": "USD/lb",
"points": [
{
"date": "2026-09-18",
"value": 2.5125
},
{
"date": "2026-09-21",
"value": 2.5
},
{
"date": "2026-09-22",
"value": 2.4875
}
]
}
]
}{
"error": {
"type": "invalid_request",
"message": "Unknown series: butter-spot"
}
}{
"error": {
"type": "unauthorized",
"message": "Missing or malformed Authorization: Bearer header"
}
}{
"error": {
"type": "forbidden",
"message": "This key is not scoped to get-commodity-prices"
}
}Authorizations
Your API key, which starts with orbbit_data_.
Query Parameters
Comma-separated catalog slugs, at most 100
YYYY-MM-DD, inclusive; absent means from the first reading
YYYY-MM-DD, inclusive; absent means to the last reading
Response
Success
Show child attributes
Show child attributes