Get the current trending topics for a specific location on Twitter/X. Returns trend names, search queries, and tweet volumes where available.
curl "https://apidirect.io/v1/twitter/trends?woeid=1" \
-H "X-API-Key: YOUR_API_KEY"
{
"trends": [
{
"name": "#TrendingTopic",
"query": "%23TrendingTopic",
"tweet_volume": 125000,
"url": "http://twitter.com/search?q=%23TrendingTopic"
},
{
"name": "Breaking News",
"query": "%22Breaking+News%22",
"tweet_volume": null,
"url": "http://twitter.com/search?q=%22Breaking+News%22"
}
],
"location": "Worldwide",
"woeid": 1,
"as_of": "2026-03-05T01:23:37Z",
"count": 50
}