/v1/quote
Live quote for one or more Amsterdam 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/netherlands-stock-api/v1/quote" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/netherlands-stock-api/v1/quote", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/netherlands-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/netherlands-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": "AMS",
"quotes": [
{
"low": 1574.2,
"high": 1629.6,
"last": 1629.6,
"name": "ASML Holding NV",
"open": 1612,
"pe_ttm": 63.0097,
"sector": "Electronic Technology",
"symbol": "ASML",
"ticker": "EURONEXT:ASML",
"volume": 1014928,
"currency": "EUR",
"change_abs": 53.6,
"change_pct": 3.401,
"market_cap": 622482424414
},
{
"low": 25.405,
"high": 26.06,
"last": 25.96,
"name": "ING Groep N.V.",
"open": 25.575,
"pe_ttm": 11.8979,
"sector": "Finance",
"symbol": "INGA",
"ticker": "EURONEXT:INGA",
"volume": 9606975,
"currency": "EUR",
"change_abs": 0.89,
"change_pct": 3.5501,
"market_cap": 73590094729
},
{
"low": 57.92,
"high": 60.66,
"last": 60.6,
"name": "ArcelorMittal SA",
"open": 59,
"pe_ttm": 16.2842,
"sector": "Non-Energy Minerals",
"symbol": "MT",
"ticker": "EURONEXT:MT",
"volume": 3134646,
"currency": "EUR",
"change_abs": 3.36,
"change_pct": 5.87,
"market_cap": 45075047461
}
]
},
"meta": {
"timestamp": "2026-06-15T02:09:54.706Z",
"request_id": "f798c02c-e391-46a9-8341-5d336d7b197d"
},
"status": "ok",
"message": "Quote retrieved successfully",
"success": true
}