Get TikTok creator info
Returns TikTok creator details, available privacy levels, posting limits, and commercial content options for a specific TikTok account. Only works with TikTok accounts.
API key authentication - use your Zernio API key as a Bearer token
In: header
Path Parameters
The TikTok account ID
Query Parameters
The media type to get creator info for (affects available interaction settings)
"video""video" | "photo"Response Body
application/json
application/json
application/json
application/json
application/json
import Zernio from '@zernio/node';const zernio = new Zernio({ apiKey: process.env.ZERNIO_API_KEY });const { data } = await zernio.accounts.getTikTokCreatorInfo({ path: { accountId: 'account_abc123', },});console.log(data);{
"creator": {
"nickname": "myaccount",
"avatarUrl": "https://example.com/avatar.jpg",
"isVerified": false,
"canPostMore": true
},
"privacyLevels": [
{
"value": "PUBLIC_TO_EVERYONE",
"label": "Public To Everyone"
},
{
"value": "MUTUAL_FOLLOW_FRIENDS",
"label": "Mutual Follow Friends"
},
{
"value": "SELF_ONLY",
"label": "Self Only"
}
],
"postingLimits": {
"maxVideoDurationSec": 600,
"interactionSettings": {
"comment": true,
"duet": true,
"stitch": true
}
},
"commercialContentTypes": [
{
"value": "none",
"label": "No Commercial Content"
},
{
"value": "brand_organic",
"label": "Your Brand",
"requires": [
"is_brand_organic_post"
]
}
]
}{
"error": "This endpoint is only available for TikTok accounts"
}{
"error": "Unauthorized"
}{
"error": "Not found"
}{
"error": "TikTok creator has reached the daily posting limit. Please try again later."
}Get follower stats GET
Returns follower count history and growth metrics for connected social accounts. Requires analytics add-on subscription. Follower counts are refreshed once per day.
Update account PUT
Updates a connected social account's display name or username override. For X/Twitter accounts on usage-based billing, also accepts an `xCapabilities` object to toggle background API operations that incur X API pass-through costs. Both fields are opt-in (default `false`) — when off, no analytics syncs or DM polling are performed for that account, and no API call is metered for those operations. Publishing and deleting posts are always available regardless of these toggles. Setting `xCapabilities` on a non-X account returns 400.