Prices
Batch price lookup
Get latest prices for multiple commodities in a single request. Accepts up to 50 commodity codes. Counts as 1 request against your monthly quota. Supports shorthand aliases (e.g., 'BRENT' → 'BRENT_CRUDE_USD') and case-insensitive codes.
post/v1/prices/batch
Request body
Example request
{
"codes": [
"BRENT_CRUDE_USD",
"WTI_USD",
"NATURAL_GAS_USD",
"GOLD_USD"
]
}Response
Batch price data
Example response
{
"status": "success",
"data": {
"prices": [
{
"code": "BRENT_CRUDE_USD",
"price": 78.41,
"formatted": "$78.41",
"currency": "USD",
"unit": "barrel"
}
],
"meta": {
"requested": 4,
"returned": 4
}
}
}