Zum Inhalt springen
GET /v1/meta

Service metadata

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

Beispiel-Response

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

{
    "data": {
        "source": "Yahoo Finance public chart + search (live)",
        "service": "stocks-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/quote": "One stock quote (symbol=AAPL or name=Apple).",
            "GET /v1/quotes": "Batch quotes for a watchlist (symbols=AAPL,MSFT,TSLA — up to 15).",
            "GET /v1/search": "Find a ticker by company name (q=apple)."
        },
        "description": "Live stock quotes from Yahoo Finance: for any ticker (or company name), the current price, previous close, day change (absolute and percent), day high/low, 52-week high/low, volume, exchange and currency. Look one up, pull a batch for a watchlist, or search for a company's symbol. US and international equities and ETFs. Live, no key. Distinct from index constituent-directory APIs — this returns the live quote, not the member list.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-09T03:02:23.706Z",
        "request_id": "a41815d0-3a52-4829-93fd-d19b3f037be3"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}