TikTok Videos

The TikTok videos endpoint provides access to the top-performing TikTok videos published in the last 24 hours. Filter by niche category to discover trending content in specific verticals on TikTok.


GET/tiktok/videos/digest

Get TikTok videos digest

Returns the top TikTok videos published in the last 24 hours, ordered by view count (highest first). Optionally filter by niche category to focus on specific content verticals.

Query parameters

  • Name
    limit
    Type
    number
    Description

    Number of top videos to return (1-50). Default is 10.

  • Name
    niche
    Type
    string
    Description

    Filter by niche category. See the /niches endpoint for all available options.

Example niche values

Request

GET
/tiktok/videos/digest
curl -G https://api.virlo.ai/tiktok/videos/digest \
  -H "Authorization: Bearer {token}" \
  -d limit=10 \
  -d niche=brainrot

Response

{
  "results": 2,
  "data": [
    {
      "id": "65e6604e-7469-4c6c-aa49-cb93b6feac36",
      "url": "https://www.tiktok.com/@dailymail/video/7564023786111028535",
      "publish_date": "2025-10-22T13:00:00",
      "views": 10439698,
      "number_of_likes": 865067,
      "number_of_comments": 12065,
      "description": "She did their job for them 😳 🎥 Newsflare #trash #news #usa #mom",
      "thumbnail_url": "8dfc5b77-72aa-4965-baac-e6627c308ad9.jpg",
      "hashtags": ["trash"],
      "type": "tiktok",
      "niche": "breaking-news",
      "author_id": "16244f6f-4d83-44b2-a627-612f700065ea",
      "bookmarks": 22108,
      "external_id": "7564023786111028535",
      "region": "US",
      "duration": 65
    },
    {
      "id": "b51c2109-d402-4f31-9fd5-938acbd48aee",
      "url": "https://www.tiktok.com/@moviescins8k/video/7564027987218287903",
      "publish_date": "2025-10-22T12:51:58",
      "views": 9632829,
      "number_of_likes": 263819,
      "number_of_comments": 1005,
      "description": "THE LIMIT EXISTS ONLY IN OUR MID- Only real fans understand this emotion",
      "thumbnail_url": "d009dbb6-d928-4e54-91a7-ef9d173d5b37.jpg",
      "hashtags": ["hollywoodmix"],
      "type": "tiktok",
      "niche": "movies-tv",
      "author_id": "d9c14f71-9957-472c-b3e2-9413e14242ca",
      "bookmarks": 22048,
      "external_id": "7564027987218287903",
      "region": "US",
      "duration": 59
    }
  ]
}

Error responses

The TikTok videos digest endpoint may return the following error codes:

  • Name
    400 Bad Request
    Description

    Invalid parameters provided. Common causes include: - Invalid limit value (must be 1-50) - Invalid niche value (must be one of the valid niche identifiers)

  • Name
    401 Unauthorized
    Description

    Missing or invalid API key. Ensure you're including your API key in the Authorization header.

  • Name
    429 Too Many Requests
    Description

    Rate limit exceeded. Your plan has specific rate limits per endpoint. Wait before making additional requests.

Was this page helpful?