/v1/list
Whole commodity board in one call
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/commodities-api/v1/list" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/commodities-api/v1/list", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/commodities-api/v1/list");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/commodities-api/v1/list",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"count": 19,
"commodities": [
{
"name": "Orange Juice",
"unit": "lb",
"as_of": "2026-06-08T17:59:14.000Z",
"price": 164,
"quote": "US cents per lb",
"change": 3.4,
"symbol": "OJ=F",
"day_low": 154,
"category": "softs",
"currency": "USX",
"day_high": 168.25,
"commodity": "orangejuice",
"change_pct": 2.12,
"week52_low": 132.5,
"week52_high": 344.3,
"previous_close": 160.6
},
{
"name": "Cotton",
"unit": "lb",
"as_of": "2026-06-08T15:30:26.000Z",
"price": 77.87,
"quote": "US cents per lb",
"change": 0.39,
"symbol": "CT=F",
"day_low": 84.37,
"category": "softs",
"currency": "USX",
"day_high": 87.36,
"commodity": "cotton",
"change_pct": 0.5,
"week52_low": 60.71,
"week52_high": 88.88,
"previous_close": 77.48
},
{
"name": "Sugar No.11",
"unit": "lb",
"as_of": "2026-06-08T16:59:59.000Z",
"price": 14.16,
"quote": "US cents per lb",
"change": 0.04,
"symbol": "SB=F",
"day_low": 14.11,
"category": "softs",
"currency": "USX",
"day_high": 14.36,
"commodity": "sugar",
"change_pct": 0.28,
"week52_low": 13.22,
"week52_high": 17.05,
"previous_close": 14.12
},
{
"name": "Natural Gas",
"unit": "MMBtu",
"as_of": "2026-06-09T02:51:54.000Z",
"price": 3.15,
"quote": "USD per MMBtu",
"change": 0.01,
"symbol": "NG=F",
"day_low": 3.13,
"category": "energy",
"currency": "USD",
"day_high": 3.15,
"commodity": "natgas",
"change_pct": 0.16,
"week52_low": 2.48,
"week52_high": 7.83,
"previous_close": 3.15
},
{
"name": "Corn",
"unit": "bushel",
"as_of": "2026-06-09T02:50:21.000Z",
"price": 419.25,
"quote": "US cents per bushel",
"change": 0.5,
"symbol": "ZC=F",
"day_low": 418.25,
"category": "grains",
"currency": "USX",
"day_high": 421,
"commodity": "c
…