/v1/meta
Market metadata & endpoint guide
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}