Skip to main content
POST
/
crawl
/
tiktok
/
post
Scrape TikTok post detail
curl --request POST \
  --url https://api.crawlkit.sh/v1/crawl/tiktok/post \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "url": "<string>",
  "options": {
    "timeout": 30500
  }
}
'
{
  "success": true,
  "data": {
    "post": {
      "id": "<string>",
      "description": "<string>",
      "createdAt": "<string>",
      "author": {
        "id": "<string>",
        "username": "<string>",
        "nickname": "<string>",
        "avatar": "<string>",
        "verified": true
      },
      "music": {
        "title": "<string>",
        "author": "<string>",
        "album": "<string>",
        "duration": 123,
        "coverUrl": "<string>"
      },
      "video": {
        "duration": 123,
        "coverUrl": "<string>",
        "width": 123,
        "height": 123
      },
      "stats": {
        "plays": 123,
        "likes": 123,
        "comments": 123,
        "shares": 123,
        "saves": 123,
        "reposts": 123
      },
      "hashtags": [
        {
          "id": "<string>",
          "title": "<string>"
        }
      ],
      "locationCreated": "<string>",
      "isAd": true
    },
    "timing": {
      "total": 123
    },
    "creditsUsed": 123,
    "creditsRemaining": 123
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
url
string<uri>
required
options
object

Response

Default Response

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