Skip to main content
GET
/
tiktok
/
profile
cURL
curl -X GET "https://apiv3.creatordb.app/tiktok/profile?uniqueId=charlidamelio" \
  -H "Content-Type: application/json" \
  -H "api-key: <YOUR_API-KEY_HERE>"
{
  "data": {
    "uniqueId": "charlidamelio",
    "displayName": "charli d’amelio",
    "category": "",
    "avatarUrl": "https://p16-sign-va.tiktokcdn.com/tos-maliva-avt-0068/7310052907548688430~tplv-tiktokx-cropcenter:720:720.jpeg?dr=14579&refresh_token=d917d4bb&x-expires=1768021200&x-signature=YzmaK9NcAS6NfN%2BNcV1LLX3jJec%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=f20df69d&idc=maliva",
    "bio": ":)",
    "isBusinessAccount": false,
    "isVerified": true,
    "hasSponsors": false,
    "country": "United States",
    "mainLanguage": "eng",
    "totalContents": 25,
    "totalFollowers": 155900000,
    "totalFollowing": 1289,
    "hashtags": [
      {
        "name": "#pradamode",
        "contentCount": 2
      },
      {
        "name": "#redbulldanceyourstyle",
        "contentCount": 2
      },
      {
        "name": "#redbullfam",
        "contentCount": 2
      },
      {
        "name": "#givesyouwiiings",
        "contentCount": 1
      },
      {
        "name": "#katespadenypartner",
        "contentCount": 1
      },
      {
        "name": "#pradass26",
        "contentCount": 1
      },
      {
        "name": "#eadv2025",
        "contentCount": 1
      },
      {
        "name": "#ceraveeadv2025",
        "contentCount": 1
      },
      {
        "name": "#ceravepartner",
        "contentCount": 1
      }
    ],
    "otherLinks": [
      {
        "title": "",
        "url": "https://www.tiktok.com/link/v2?aid=1988&lang=en&scene=bio_url&target=win.gs/DanceYourStyleLA"
      }
    ],
    "lastPublishTime": 1763599023000,
    "lastDbUpdateTime": 1767830400000
  },
  "quotaUsed": 1,
  "quotaUsedTotal": 1,
  "remainingQuota": -1,
  "traceId": "e2817236a4f325570bfe6ee5fae33f23",
  "timestamp": 1767936363120,
  "errorCode": "",
  "errorDescription": "",
  "success": true
}

Authorizations

api-key
string
header
required

The valid CreatorDB API key for authentication.

Query Parameters

uniqueId
string
required

TikTok account ID. Accepts tiktok or @tiktok (@ is stripped automatically).

Required string length: 1 - 101
Pattern: ^@?[a-zA-Z0-9._-]+$
Example:

"tiktok"

Response

TikTok creator profile information returned successfully.

data
object
required

Profile information of the specified TikTok creator.

traceId
string
required

Unique trace ID for each request

Example:

"f8e4a3b2c1d0e9f8a7b6c5d4e3f2a1b0"

timestamp
integer
required

Time the response was generated, represented as a Unix timestamp in milliseconds.

Example:

1750732453635

errorCode
string
required

Error code returned if the request fails. Empty if the request is successful.

Example:

""

errorDescription
string
required

Description of the error. Empty if the request is successful.

Example:

""

success
boolean
required

true if the request is successful.

Example:

true

Last modified on March 20, 2026