Vai al contenuto
GET /v1/meta

Market metadata & endpoint guide

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/peru-stock-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "market": "Lima Stock Exchange (BVL)",
        "source": "TradingView screener (peru market), keyless",
        "country": "Peru",
        "indices": [
            "MXNUAMPEGEN",
            "MXNUAMPESEL"
        ],
        "currency": "PEN",
        "examples": {
            "index": "/v1/index",
            "quote": "/v1/quote?symbols=CREDITC1,BBVAC1,BACKUAC1",
            "search": "/v1/search?q=banco",
            "screener": "/v1/screener?sort=change&order=desc&limit=10"
        },
        "endpoints": {
            "/v1/index": "Peru general index (MSCI NUAM Peru General)",
            "/v1/quote": "live quote for one or more BVL stocks by ticker (symbols=CREDITC1,BBVAC1)",
            "/v1/search": "find BVL stocks by company name (q, limit)",
            "/v1/screener": "rank local primary listings by market_cap | change | volume (sort, order, limit)"
        },
        "cache_ttl_ms": 20000
    },
    "meta": {
        "timestamp": "2026-06-15T02:10:18.253Z",
        "request_id": "60662faf-619d-477c-912c-3181efdc0da7"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}