GET /commodities/:commodity
Get the current price for a specific commodity (gold, silver, platinum, palladium, oil, natural_gas, or copper) in any of the 30 supported currencies. Returns both the USD base price and the converted price. Useful when you need just one commodity's price rather than the full list, such as displaying the gold price in NOK on a Nordic investment page.
commodity
required
Commodity name in URL
currency
optional
default: USD
Price currency
| Name | Required | Default | Description |
|---|---|---|---|
commodity |
Yes | - | Commodity name in URL |
currency |
No | USD | Price currency |
curl "https://nordapi.ee/api/v1/commodities/gold?currency=NOK"
curl "https://nordapi.ee/api/v1/commodities/gold?currency=NOK"
curl "https://nordapi.ee/api/v1/commodities/oil"
curl "https://nordapi.ee/api/v1/commodities/silver?currency=EUR"
{
"commodity": "gold",
"currency": "NOK",
"date": "2026-03-20",
"fx_rate": 9.74273319,
"name": "Gold (Troy Ounce)",
"price": 29666.62256355,
"price_usd": 3045.0,
"source": "reference",
"success": true,
"unit": "troy_oz"
}
{"success":true,"commodity":"gold","price":29063.87,"currency":"NOK","price_usd":3045.0}