Aller au contenu
GET /v1/quote

Live quote for one or more Stockholm stocks

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/sweden-stock-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
}