Zum Inhalt springen
GET /v1/quote

One stock quote by ticker or name

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/stocks-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "name": "Apple Inc.",
        "as_of": "2026-06-08T20:00:01.000Z",
        "price": 301.54,
        "change": -5.8,
        "symbol": "AAPL",
        "volume": 77764805,
        "day_low": 301.17,
        "currency": "USD",
        "day_high": 317.4,
        "exchange": "NasdaqGS",
        "change_pct": -1.89,
        "week52_low": 195.07,
        "week52_high": 317.4,
        "previous_close": 307.34,
        "instrument_type": "EQUITY"
    },
    "meta": {
        "timestamp": "2026-06-09T03:02:23.222Z",
        "request_id": "e69856de-ec02-4b90-8f69-d24d628e93ee"
    },
    "status": "ok",
    "message": "Quote retrieved successfully",
    "success": true
}