Skip to main content
GET
/
tiktok
/
user-info
Get TikTok User Info
curl --request GET \
  --url https://api.d1g.qzz.io/api/v1/tiktok/user-info \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "connected": true,
    "accounts": [
      {
        "id": "123e4567-e89b-12d3-a456-426614174000",
        "tiktokUserId": "-000XN5Rz6rugPzrmLG4fbdlerhoUhvk9grH",
        "username": "clipcraft_admin",
        "displayName": "clipcraft_admin",
        "avatarUrl": "https://p16-common-sign.tiktokcdn-us.com/...",
        "bioDescription": "Content creator & marketer",
        "isVerified": false,
        "followerCount": 1250,
        "followingCount": 485,
        "likesCount": 5420,
        "videoCount": 42,
        "profileDeepLink": "https://www.tiktok.com/@clipcraft_admin",
        "connectedAt": "2025-01-19T08:13:24.088Z",
        "lastRefreshedAt": "2025-01-20T21:00:08.319Z"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Use JWT token (from Supabase auth) or API key (format: sk_live_...)

Response

Successfully retrieved user info

success
boolean
Example:

true

data
object