/v1/meta
Service metadata
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}