/v1/quote
Live quote for one or more BVL stocks
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/quote" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/peru-stock-api/v1/quote", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/peru-stock-api/v1/quote");
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/quote",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"count": 3,
"market": "BVL",
"quotes": [
{
"low": 6.3,
"high": 6.45,
"last": 6.36,
"name": "Banco de Credito del Peru SA",
"open": 6.45,
"pe_ttm": 12.0386,
"sector": "Finance",
"symbol": "CREDITC1",
"ticker": "BVL:CREDITC1",
"volume": 68955,
"currency": "PEN",
"change_abs": 0.06,
"change_pct": 0.9524,
"market_cap": 82535337959
},
{
"low": 1.94,
"high": 1.95,
"last": 1.95,
"name": "Banco BBVA Peru SA",
"open": 1.95,
"pe_ttm": 8.2278,
"sector": "Finance",
"symbol": "BBVAC1",
"ticker": "BVL:BBVAC1",
"volume": 480440,
"currency": "PEN",
"change_abs": 0,
"change_pct": 0,
"market_cap": 20681319646
},
{
"low": 220,
"high": 220,
"last": 220,
"name": "Union De Cervecerias Peruanas Backus & Johnston SAA Class A",
"open": 220,
"pe_ttm": 95.1351,
"sector": "Consumer Non-Durables",
"symbol": "BACKUAC1",
"ticker": "BVL:BACKUAC1",
"volume": 50,
"currency": "PEN",
"change_abs": 0,
"change_pct": 0,
"market_cap": 30755076632
}
]
},
"meta": {
"timestamp": "2026-06-15T02:10:17.518Z",
"request_id": "a0c74f5f-5d8f-461c-95aa-30752f50e676"
},
"status": "ok",
"message": "Quote retrieved successfully",
"success": true
}