Skip to content
GET /v1/search

Find BVL stocks by company name

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/peru-stock-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "count": 3,
        "query": "banco",
        "market": "BVL",
        "results": [
            {
                "low": 1.9,
                "high": 1.9,
                "last": 1.9,
                "name": "Banco Internacional del Peru SAA Interbank",
                "open": 1.9,
                "pe_ttm": 8.0508,
                "sector": "Finance",
                "symbol": "INTERBC1",
                "ticker": "BVL:INTERBC1",
                "volume": 1262,
                "currency": "PEN",
                "change_abs": 0,
                "change_pct": 0,
                "market_cap": 12795045152
            },
            {
                "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": 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
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-15T02:10:17.992Z",
        "request_id": "23a96aac-19e2-44ca-aea2-0affd28f4c70"
    },
    "status": "ok",
    "message": "Search retrieved successfully",
    "success": true
}