TikTok API endpoint

Retrieve a TikTok profile

Returns the TikTok profile payload for a public handle.

GETapiKey8 credits/requesttiktok.profileResponseDoc/tiktok/profile/{handler}

Parameters

NameInTypeRequiredEnumExampleDescription
x-api-keyheaderstringYesAPI key required
handlerpathstringYeschatgptTikTok handle without the leading @

Authentication

Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.

Billing

Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.

Credit cost
8 credits/request
Charged response
Successful 2xx responses
PlanPriceIncluded creditsDaily capRate limitOverage
Free$0/mo2,000500 daily credits5/minNo overage
Starter$9/mo20,0005,000 daily credits15/min$0.75/1,000 overage credits when enabled
Growth$29/mo100,00025,000 daily credits45/min$0.45/1,000 overage credits when enabled
Pro$79/mo400,000No daily cap120/min$0.30/1,000 overage credits
Business$199/mo1,200,000No daily cap300/min$0.20/1,000 overage credits
Enterprise$499/mo5,000,000No daily cap1,000/min$0.12/1,000 overage credits

Failure responses

StatusDescriptionSchema
400Invalid input#/definitions/app.Response
429Rate limit exceeded#/definitions/app.Response
500Internal server error#/definitions/app.Response

Example response

{
  "code": 200,
  "msg": "OK",
  "data": {
    "user": {
      "id": "7256182609359995947",
      "uniqueId": "chatgpt",
      "nickname": "chatgpt",
      "signature": "What can I help with?",
      "verified": true,
      "secUid": "MS4wLjABAAAAT4vq3vsh9X-Vb_WtV6tz4QWTbKjliTKCiK5DqnJNtQEA2RUveHb7UdnL7xgPK2HB"
    },
    "stats": {
      "followerCount": 458800,
      "followingCount": 1,
      "heartCount": 800300,
      "videoCount": 59
    }
  }
}

Request schema

No body schema

Response schema

#/definitions/tiktok.profileResponseDoc

FieldTypeRequiredEnumBoundsExampleDescription
codeintegerNo200
datatiktok.ProfileNo
data.statstiktok.ProfileStatsNo
data.stats.diggCountintegerNo0
data.stats.followerCountintegerNo458800
data.stats.followingCountintegerNo1
data.stats.friendCountintegerNo1
data.stats.heartintegerNo800300
data.stats.heartCountintegerNo800300
data.stats.videoCountintegerNo59
data.usertiktok.UserNo
data.user.avatarLargerstringNohttps://p16-pu-sign-useast8.tiktokcdn-us.com/tos-useast5-avt-0068-tx/fb1ed871dc01261013179da3fafcc1cd~c5_1080x1080.jpeg?lk3s=a5d48078&nonce=62362&refresh_token=e3e8e01eff1ea0116ae406af630dc407&x-expires=1734098400&x-signature=MXMzwWT8Tl1nxFZfYNQxOZM%2F%2Byo%3D&shp=a5d48078&shcp=81f88b70
data.user.bioLinkobjectNo
data.user.bioLink.linkstringNowww.openai.com/chatgpt
data.user.commerceUserInfoobjectNo
data.user.commerceUserInfo.categorystringNoSoftware & Apps
data.user.commerceUserInfo.commerceUserbooleanNotrue
data.user.createTimeintegerNo1689461786
data.user.idstringNo7256182609359995947
data.user.isOrganizationintegerNo1
data.user.languagestringNoen
data.user.nicknamestringNochatgpt
data.user.privateAccountbooleanNofalse
data.user.regionstringNoUS
data.user.secUidstringNoMS4wLjABAAAAT4vq3vsh9X-Vb_WtV6tz4QWTbKjliTKCiK5DqnJNtQEA2RUveHb7UdnL7xgPK2HB
data.user.secretbooleanNofalse
data.user.signaturestringNoWhat can I help with?
data.user.ttSellerbooleanNofalse
data.user.uniqueIdstringNouniqueId
data.user.verifiedbooleanNotrue
msgstringNoOK

Example request

curl -X GET "https://api.crawlora.net/api/v1/tiktok/profile/chatgpt" -H "x-api-key: <api-key>"

TypeScript fetch

const url = new URL("https://api.crawlora.net/api/v1/tiktok/profile/chatgpt");
const headers = new Headers();
headers.set("x-api-key", "<api-key>");
const response = await fetch(url, {
  method: "GET",
  headers,
});
const payload = await response.json();