Zum Inhalt springen
GET /v1/trends

Trending topics on GETTR now

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/gettr-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "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
}