Aller au contenu
GET /v1/meta

Spec

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/economiccalendar-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/economiccalendar-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/economiccalendar-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/economiccalendar-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/economiccalendar-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": "Nasdaq public economic calendar API (live)",
        "service": "economiccalendar-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/week": "The whole week ahead from a date (date=, optional country=, q=).",
            "GET /v1/events": "Economic events on a date (date=YYYY-MM-DD, optional country=, q=event name).",
            "GET /v1/countries": "Which countries report on a date and how many events each (date=)."
        },
        "description": "Live macroeconomic-event calendar from Nasdaq: for any date, each release with GMT time, country, event name, actual print, consensus forecast, previous reading and a description — GDP, CPI/inflation, central-bank rate decisions, unemployment/NFP, industrial production, trade balances, PMI and more, across every major economy. Filter by country or event name, get the whole week ahead in one call, or see which countries report on a date. Live, nothing stored. Distinct from corporate-events (earnings/dividends/splits) and price APIs — this is the macroeconomic calendar.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-09T11:39:57.901Z",
        "request_id": "5f9bcf0f-92c6-46ef-857c-6e0d391f21b5"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}