Skip to main content
GET
/
trends
List trends
curl --request GET \
  --url https://xquik.com/api/v1/trends \
  --header 'x-api-key: <api-key>'

Documentation Index

Fetch the complete documentation index at: https://docs.xquik.com/llms.txt

Use this file to discover all available pages before exploring further.

3 credits per call · All plans from $0.00012/credit
curl "https://xquik.com/api/v1/trends?woeid=1&count=30" \
  -H "x-api-key: xq_YOUR_KEY_HERE" | jq

Headers

x-api-key
string
required
Your API key. Generate one from the API Keys page.

Query parameters

woeid
number
Region WOEID. See supported regions below. Default: 1 (Worldwide).
count
number
Number of trends to return. Max 50, default 30.

Response

Array of trending topics.
total
number
Full count of available trends before slicing by count.
woeid
number
Region WOEID used for this request.
{
  "trends": [
    {
      "name": "#SuperBowl",
      "description": "Trending in United States",
      "rank": 1,
      "query": "%23SuperBowl"
    },
    {
      "name": "Taylor Swift",
      "rank": 2,
      "query": "%22Taylor%20Swift%22"
    }
  ],
  "total": 50,
  "woeid": 1
}

Regions

Use these WOEIDs in the woeid query parameter. Omit woeid or pass 1 for worldwide trends.

Global & Americas

  • 1 - Worldwide
  • 23424977 - United States
  • 23424775 - Canada
  • 23424900 - Mexico
  • 23424768 - Brazil

Europe

  • 23424975 - United Kingdom
  • 23424969 - Turkey
  • 23424950 - Spain
  • 23424829 - Germany
  • 23424819 - France

Asia

  • 23424856 - Japan
  • 23424848 - India
Last modified on May 14, 2026