/v1/trending
Most-searched tickers with live price & change
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/trendingstocks-api/v1/trending" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/trendingstocks-api/v1/trending", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/trendingstocks-api/v1/trending");
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/trendingstocks-api/v1/trending",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"count": 15,
"region": "US",
"source": "Yahoo Finance",
"trending": [
{
"rank": 1,
"type": "EQUITY",
"price": 135,
"change": 0,
"symbol": "SPCX",
"currency": "USD",
"exchange": "NasdaqGS",
"change_pct": 0,
"previous_close": 135
},
{
"rank": 2,
"type": "EQUITY",
"price": 218.8,
"change": -14.58,
"symbol": "ADBE",
"currency": "USD",
"exchange": "NasdaqGS",
"change_pct": -6.25,
"previous_close": 233.38
},
{
"rank": 3,
"type": "EQUITY",
"price": 114.78,
"change": 9.73,
"symbol": "RKLB",
"currency": "USD",
"exchange": "NasdaqGS",
"change_pct": 9.26,
"previous_close": 105.05
},
{
"rank": 4,
"type": "EQUITY",
"price": 5.73,
"change": 1.02,
"symbol": "SPCE",
"currency": "USD",
"exchange": "NYSE",
"change_pct": 21.66,
"previous_close": 4.71
},
{
"rank": 5,
"type": "EQUITY",
"price": 1881.51,
"change": 238.28,
"symbol": "SNDK",
"currency": "USD",
"exchange": "NasdaqGS",
"change_pct": 14.5,
"previous_close": 1643.23
},
{
"rank": 6,
"type": "CRYPTOCURRENCY",
"price": 63283,
"change": -270.08,
"symbol": "BTC-USD",
"currency": "USD",
"exchange": "CCC",
"change_pct": -0.42,
"previous_close": 63553.08
},
{
"rank": 7,
"type": "EQUITY",
"price": 97.56,
"change": 10.24,
"symbol": "ASTS",
"currency": "USD",
"exchange": "NasdaqGS",
"change_pct": 11.73,
"previous_close": 87.32
},
{
"rank": 8,
"type": "EQUITY",
"price": 222.24,
"change": 10.55,
"symbol": "NBIS",
"currency": "USD",
"exchange": "NasdaqGS",
"change_pct": 4.98,
"previous_close": 211.69
},
{
"rank": 9,
"type": "EQUITY",
"price": 17.09,
"change": 2.22,
…