/v1/meta
Market metadata & endpoint guide
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/portugal-stock-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/portugal-stock-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/portugal-stock-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/portugal-stock-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"market": "Euronext Lisbon",
"source": "TradingView screener (portugal market), keyless",
"country": "Portugal",
"indices": [
"PSI20",
"BVL"
],
"currency": "EUR",
"examples": {
"index": "/v1/index",
"quote": "/v1/quote?symbols=EDP,GALP,JMT",
"screener": "/v1/screener?sort=change&order=desc&limit=10"
},
"endpoints": {
"/v1/index": "Lisbon index family (PSI 20, PSI All-Share)",
"/v1/quote": "live quote for one or more Lisbon stocks by ticker (symbols=EDP,GALP,JMT)",
"/v1/screener": "rank local primary listings by market_cap | change | volume (sort, order, limit)"
},
"cache_ttl_ms": 20000
},
"meta": {
"timestamp": "2026-06-15T02:09:56.898Z",
"request_id": "57b1c46c-35b6-46f5-8aef-d52854a97148"
},
"status": "ok",
"message": "Meta",
"success": true
}