Ir al contenido
GET /v1/trending

Most-searched tickers with live price & change

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/trendingstocks-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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,
                
…