/v1/meta
Service metadata
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/commoditymovers-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/commoditymovers-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/commoditymovers-api/v1/meta");
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/commoditymovers-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"note": "movers group= filters by sector. commodity= takes a key/name/alias (gold, crude_oil, KC=F; see /v1/commodities). Changes are over 1, ~5 and ~21 trading days. Read fresh per call, nothing cached.",
"groups": [
"energy",
"metals",
"grains",
"softs",
"livestock"
],
"source": "Yahoo Finance daily commodity futures (1y range), live",
"service": "commoditymovers-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/movers": "The commodity complex ranked by daily change with weekly/monthly leaders (group=energy optional).",
"GET /v1/commodity": "One commodity's performance card (commodity=gold).",
"GET /v1/commodities": "The supported commodities and groups."
},
"description": "Commodity movers & performance — what is moving across the commodity complex now, live from Yahoo Finance futures (no key, nothing stored). movers returns the whole complex ranked by daily change (top gainers and losers) plus the weekly and monthly leaders, filterable by sector. commodity returns one commodity's performance card (day/week/month change, day high/low, 52-week high/low, range position). commodities lists what is covered. The commodity movers / performance-board cut — distinct from the commodity-momentum API (blended multi-month factor + regime), the commodity-price feed, the commodity-spreads and the seasonality APIs.",
"universe_size": 20,
"upstream_status": "ok",
"commodities_scanned": 20
},
"meta": {
"timestamp": "2026-06-12T10:35:14.408Z",
"request_id": "0cfefe9f-ded0-48e8-b19a-ec0687f7826d"
},
"status": "ok",
"message": "Meta",
"success": true
}