/v1/quote
Live quote for one or more Stockholm 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/sweden-stock-api/v1/quote" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/sweden-stock-api/v1/quote", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/sweden-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/sweden-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": "OMXSTO",
"quotes": [
{
"low": 373,
"high": 380.2,
"last": 374,
"name": "Investor AB Class A",
"open": 375,
"pe_ttm": 6.0138,
"sector": "Finance",
"symbol": "INVE_A",
"ticker": "OMXSTO:INVE_A",
"volume": 363338,
"currency": "SEK",
"change_abs": 2.6,
"change_pct": 0.7001,
"market_cap": 1154892242983
},
{
"low": 314.3,
"high": 321.5,
"last": 315.1,
"name": "Volvo AB Class B",
"open": 316.1,
"pe_ttm": 19.4867,
"sector": "Producer Manufacturing",
"symbol": "VOLV_B",
"ticker": "OMXSTO:VOLV_B",
"volume": 3917588,
"currency": "SEK",
"change_abs": 5,
"change_pct": 1.6124,
"market_cap": 640961136886
},
{
"low": 376.2,
"high": 389.3,
"last": 378.6,
"name": "Sandvik AB",
"open": 377.1,
"pe_ttm": 32.0459,
"sector": "Producer Manufacturing",
"symbol": "SAND",
"ticker": "OMXSTO:SAND",
"volume": 2161983,
"currency": "SEK",
"change_abs": 11,
"change_pct": 2.9924,
"market_cap": 474910495864
}
]
},
"meta": {
"timestamp": "2026-06-15T02:10:01.151Z",
"request_id": "0dbceee6-b99a-4863-852a-772016e4ed41"
},
"status": "ok",
"message": "Quote retrieved successfully",
"success": true
}