Skip to main content
GET
/
api
/
v1
/
trends
Get trending topics
curl --request GET \
  --url https://quizquail.com/api/v1/trends \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "title": "<string>",
      "hook": "<string>",
      "quizPrompt": "<string>",
      "category": "pop_culture",
      "timescale": "<string>"
    }
  ],
  "refreshedAt": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

API key authentication. Prefix your key with Bearer in the Authorization header.

Keys follow the format qq_... and can be scoped to specific permissions.

Query Parameters

category
enum<string>

Filter by trend category

Available options:
pop_culture,
sports,
science_tech,
entertainment,
world_events,
gaming,
food_lifestyle

Response

Trending topics

data
object[]
required
refreshedAt
string<date-time> | null
required