Skip to content
GET /v1/trends

Trending topics on GETTR now

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/gettr-api

It works. Grab an API key and use it in your project.

Get an API key

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

Example response

A real response from this endpoint, captured by the latest 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
}