accounts
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.
AuthorizationBearer <token>
API key authentication - use your Zernio API key as a Bearer token
In: header
Path Parameters
accountIdstring
The TikTok account ID
Query Parameters
mediaType?string
The media type to get creator info for (affects available interaction settings)
Default
"video"Value in
"video" | "photo"Response Body
application/json
application/json
application/json
application/json
application/json
curl -X GET "https://zernio.com/api/v1/accounts/string/tiktok/creator-info"{
"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."
}