Aller au contenu
GET /v1/meta

Service metadata and full contract list

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/futures-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

curl "https://api.oanor.com/futures-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/futures-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/futures-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/futures-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "data": {
        "source": "Yahoo Finance public chart API (live)",
        "futures": {
            "dow": "Mini Dow Jones",
            "sp500": "E-mini S&P 500",
            "tnote2y": "2-Year T-Note",
            "tnote5y": "5-Year T-Note",
            "tbond30y": "30-Year T-Bond",
            "tnote10y": "10-Year T-Note",
            "nasdaq100": "E-mini Nasdaq-100",
            "ultrabond": "Ultra T-Bond",
            "russell2000": "E-mini Russell 2000"
        },
        "service": "futures-api",
        "endpoints": {
            "GET /v1/list": "The whole futures board in one call.",
            "GET /v1/meta": "This document (with the full contract list).",
            "GET /v1/future": "One futures quote (future=sp500|nasdaq100|tnote10y|… or aliases like es, nq, zn).",
            "GET /v1/category": "A category board ranked by day change (category=index|rates)."
        },
        "categories": [
            "index",
            "rates"
        ],
        "description": "Live US index and Treasury futures from Yahoo Finance: for any contract, the front-month price, previous close, day change (absolute and percent), day high/low, 52-week high/low, contract month and currency. Index futures (E-mini S&P 500, Nasdaq-100, Dow, Russell 2000) and rate futures (2/5/10/30-year Treasuries). Look one up, pull a category board (index or rates) ranked by the day's move, or get the whole board. Live, no key. Distinct from spot index APIs and the physical-commodity futures API — this is financial (index and rate) futures.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-09T03:02:15.249Z",
        "request_id": "3270b12f-ef5f-4ec2-8fae-fbec8119b9d0"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}