Aller au contenu
GET /v1/meta

Market metadata & endpoint guide

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/mexico-stock-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/mexico-stock-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/mexico-stock-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/mexico-stock-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/mexico-stock-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": {
        "note": "Mexican share classes use a slash suffix, e.g. GMEXICO/B, AMX/B, FEMSA/UBD.",
        "market": "Bolsa Mexicana de Valores (BMV)",
        "source": "TradingView screener (mexico market), keyless",
        "country": "Mexico",
        "indices": [
            "ME",
            "CP",
            "ICG",
            "CM"
        ],
        "currency": "MXN",
        "examples": {
            "index": "/v1/index?symbol=ME",
            "quote": "/v1/quote?symbols=GMEXICO/B,AMX/B,WALMEX",
            "screener": "/v1/screener?sort=change&order=desc&limit=10"
        },
        "endpoints": {
            "/v1/index": "S&P/BMV indices (IPC = ME, LargeCap = CP, MidCap = ICG, SmallCap = CM)",
            "/v1/quote": "live quote for one or more BMV stocks by ticker (symbols=GMEXICO/B,AMX/B,WALMEX)",
            "/v1/screener": "rank local primary listings by market_cap | change | volume (sort, order, limit)"
        },
        "cache_ttl_ms": 20000
    },
    "meta": {
        "timestamp": "2026-06-15T11:16:03.602Z",
        "request_id": "6aa1b653-4d34-4ef7-8445-05893ecd16d4"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}