XreplyAIDevelopers
API ReferenceSocial Accounts

Fetch TikTok creator info for a connected account

Requires scope: `accounts:read`. Returns the creator's display details and posting capabilities from TikTok, used to populate the composer before a Direct Post. TikTok's Content Sharing Guidelines require the upload UI to name the creator being posted to and to disable any interaction the creator has turned off, so `comment_disabled`, `duet_disabled`, and `stitch_disabled` are creator-level settings that override any per-post choice.

GET
/tiktok/creator_info
AuthorizationBearer <token>

A personal API key created in the dashboard (Starter, Pro, and Team plans).

In: header

Query Parameters

social_account_id*integer

ID of the connected TikTok social account.

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/tiktok/creator_info?social_account_id=0"
{  "nickname": "Jane Doe",  "username": "janedoe",  "avatar_url": "https://p16.tiktokcdn.com/avatar.jpeg",  "privacy_level_options": [    "PUBLIC_TO_EVERYONE",    "MUTUAL_FOLLOW_FRIENDS",    "SELF_ONLY"  ],  "comment_disabled": false,  "duet_disabled": true,  "stitch_disabled": false,  "max_video_post_duration_sec": 600}