Naar de inhoud
GET /v1/meta

Service metadata

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/stocks-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}