/v1/quote
Live quote for one or more BMV stocks
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/mexico-stock-api/v1/quote" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/mexico-stock-api/v1/quote", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/mexico-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/mexico-stock-api/v1/quote",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"count": 3,
"market": "BMV",
"quotes": [
{
"low": 206.42,
"high": 213.06,
"last": 209.69,
"name": "Grupo Mexico S.A.B. de C.V. Class B",
"open": 206.5,
"pe_ttm": 15.3796,
"sector": "Non-Energy Minerals",
"symbol": "GMEXICO/B",
"ticker": "BMV:GMEXICO/B",
"volume": 2926233,
"currency": "MXN",
"change_abs": 3.07,
"change_pct": 1.4858,
"market_cap": 1632436669006
},
{
"low": 23.65,
"high": 24.49,
"last": 23.88,
"name": "America Movil SAB de CV Class B",
"open": 23.75,
"pe_ttm": 16.4553,
"sector": "Communications",
"symbol": "AMX/B",
"ticker": "BMV:AMX/B",
"volume": 60589195,
"currency": "MXN",
"change_abs": 0.04,
"change_pct": 0.1678,
"market_cap": 1461742508629
},
{
"low": 51.71,
"high": 52.34,
"last": 52.08,
"name": "Wal-Mart de Mexico SAB de CV",
"open": 52,
"pe_ttm": 17.9667,
"sector": "Retail Trade",
"symbol": "WALMEX",
"ticker": "BMV:WALMEX",
"volume": 27340371,
"currency": "MXN",
"change_abs": 0.27,
"change_pct": 0.5211,
"market_cap": 908604495539
}
]
},
"meta": {
"timestamp": "2026-06-15T11:16:03.060Z",
"request_id": "287fe339-5332-451b-9b77-3f6dba042066"
},
"status": "ok",
"message": "Quote retrieved successfully",
"success": true
}