Unofficial TikTok API — Live Creators

GET/api/v1/live_creators

TikTok's top live-creator board for one country (~100 creators per page). Walk page to collect more.

ParameterDescription
regionoptionalTwo-letter country code (SA, AE, EG, IQ, MA, KW, TR, US, GB, DE, FR, ...). Defaults to SA.
pageoptionalBoard page, starting at 1. Defaults to 1.
typeoptionalBoard variant: 0, 1 or 2 (each gives a different list). Defaults to 0.
limitoptionalMaximum number of creators to return. Defaults to all.
strictoptionaltrue = keep only creators whose account is really in region (drops the rest).

Returns

region, page, type, region_supported, count, and a creators array — each with user_id, username, nickname, bio, avatar_url, followers, verified, room_id, country (the creator's real country).

Example Request

https://dev.omar-thing.site/api/v1/live_creators?region=SA&page=1&type=0&limit=50&strict=true&key=YOUR_API_KEY

Example Response

{
  "data": {
    "count": 2,
    "creators": [
      {
        "avatar_url": "https://p16-common-sign.tiktokcdn.com/.../avatar.webp",
        "bio": null,
        "country": "GB",
        "followers": null,
        "nickname": "Nupe Diamond",
        "room_id": "7689172762133613345",
        "user_id": "6767244867510338565",
        "username": "nupe_diamond",
        "verified": false
      },
      {
        "...": "more creators",
        "nickname": "...",
        "room_id": null,
        "user_id": "..."
      }
    ],
    "page": 1,
    "region": "SA",
    "region_supported": false,
    "type": 0
  },
  "status": "success"
}
Sends a live request using your API key above.

More Live endpoints