TikTok Live

POST1 Credit
https://api.crawlkit.sh/v1/crawl/tiktok/live

Check the public live status of a TikTok creator and return the exposed room ID when available.

Try on Playground

Authentication

Send your Crawlkit API key as a Bearer token in the Authorization header.

Authorization: Bearer ck_your_api_key

Request Parameters

Send these JSON body fields in your request payload.

NameTypeDescription
usernamestringPublic username.

Example Request

Use direct HTTP requests against the public API base URL.

Example request
1const response = await fetch('https://api.crawlkit.sh/v1/crawl/tiktok/live', {2  method: 'POST',3  headers: {4    'Authorization': 'Bearer YOUR_API_KEY',5    'Content-Type': 'application/json'6  },7  body: JSON.stringify({8  "username": "khaby.lame",9  "options": {10    "timeout": 3000011  }12})13});14 15const { data } = await response.json();16console.log(data.live.isLive, data.live.roomId);

Response

Success (200 OK): Returns service-specific structured payload.

Success response (200 OK)
1{2  "success": true,3  "data": {4    "live": {5      "username": "khaby.lame",6      "title": "khaby.lame LIVE | TikTok",7      "isLive": false,8      "roomId": null,9      "checkedAt": 177486011242110    },11    "timing": {12      "total": 194813    },14    "creditsUsed": 1,15    "creditsRemaining": 8816  }17}