Zum Inhalt springen
GET /v1/meta

Service metadata

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/commoditymovers-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "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
}