Skip to main content
POST
/
crawl
/
tiktok
/
profile
Scrape TikTok profile
curl --request POST \
  --url https://api.crawlkit.sh/v1/crawl/tiktok/profile \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "username": "<string>",
  "options": {
    "timeout": 30500
  }
}
'
{
  "success": true,
  "data": {
    "profile": {
      "id": "<string>",
      "secUid": "<string>",
      "username": "<string>",
      "nickname": "<string>",
      "bio": "<string>",
      "bioLink": "<string>",
      "avatar": "<string>",
      "verified": true,
      "privateAccount": true,
      "isOrganization": true,
      "commerceUser": true,
      "category": "<string>",
      "language": "<string>",
      "region": "<string>",
      "createdAt": "<string>",
      "stats": {
        "followers": 123,
        "following": 123,
        "likes": 123,
        "videos": 123,
        "friends": 123,
        "digg": 123
      }
    },
    "timing": {
      "total": 123
    },
    "creditsUsed": 123,
    "creditsRemaining": 123
  }
}

Authorizations

Authorization
string
header
required

API key with 'ApiKey ' prefix (e.g., ApiKey ck_...)

Body

application/json
username
string
required

TikTok username (e.g., "nike" or "@nike")

Required string length: 1 - 100
options
object

Response

Default Response

success
enum<boolean>
required
Available options:
true
data
object
required