/v1/trends
Trending topics on GETTR now
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/gettr-api/v1/trends" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/gettr-api/v1/trends", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/gettr-api/v1/trends");
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/gettr-api/v1/trends",
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": 10,
"source": "GETTR",
"trends": [
"Trump Warns Iran of Military Response...",
"Bannon: Up the Escalatory Ladder ...",
"Japan and Britain Launch Offshore Wind Cooperation...",
"Bannon: The White House wants to get a deal done,...",
"Iran Threatens Attack on Musk's SpaceX Facilities...",
"Melania Trump Launches Initiative for Foster Youth...",
"Bannon: Negotiations with Bombs ...",
"British Defense Secretary Resigns Over Investment ...",
"Uncertainty Surrounds Anti-Weaponization Fund...",
"Pentagon Lockdown Over Hazardous Materials Inciden..."
]
},
"meta": {
"timestamp": "2026-06-11T16:47:33.190Z",
"request_id": "bfa322b5-5814-4ada-a2a2-ee80495d890e"
},
"status": "ok",
"message": "Trends retrieved successfully",
"success": true
}