---
title: "Get TikTok creator info"
method: GET
path: "/v1/accounts/{accountId}/tiktok/creator-info"
tags: ["Accounts"]
---

# Get TikTok creator info

`GET /v1/accounts/{accountId}/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.

## Path parameters

- `accountId` string, required

## Query parameters

- `mediaType` 'video' | 'photo'

## Response `200`

TikTok creator info and posting options

- object
  - `creator` object
    - `nickname` string — Creator display name
    - `avatarUrl` string — Creator avatar URL
    - `isVerified` boolean — Whether the creator is verified
    - `canPostMore` boolean — Whether the creator can publish more posts right now
  - `privacyLevels` object[] — Available privacy level options for this creator
    - `value` string — Privacy level value to use when creating posts (e.g. PUBLIC_TO_EVERYONE, MUTUAL_FOLLOW_FRIENDS, FOLLOWER_OF_CREATOR, SELF_ONLY)
    - `label` string — Human-readable label
  - `postingLimits` object
    - `maxVideoDurationSec` integer — Maximum video duration in seconds
    - `interactionSettings` object — Per-interaction descriptors for the comment, duet and stitch toggles. Each key matches the tiktokSettings field of the same name on the create-post request. allow_duet and allow_stitch are null when mediaType is photo, because TikTok does not apply duet or stitch to photo posts.
      - `allow_comment` object — Descriptor for the allow_comment toggle.
        - `enabled` boolean — Whether the creator permits this interaction. False means they disabled it in the TikTok app. This is availability, never the value the user selected.
        - `required` boolean — Whether tiktokSettings.allow_comment must be supplied when creating a post. Always true, because TikTok forbids defaulting it.
        - `default` boolean — Initial value a post composer should render. A UI seed only, never applied server-side when the field is omitted.
        - `label` string — Human-readable toggle label.
      - `allow_duet` object, nullable — Descriptor for the allow_duet toggle. Null when mediaType is photo.
        - `enabled` boolean — Whether the creator permits this interaction. False means they disabled it in the TikTok app. This is availability, never the value the user selected.
        - `required` boolean — Whether tiktokSettings.allow_duet must be supplied when creating a post. Always true, because TikTok forbids defaulting it.
        - `default` boolean — Initial value a post composer should render. A UI seed only, never applied server-side when the field is omitted.
        - `label` string — Human-readable toggle label.
      - `allow_stitch` object, nullable — Descriptor for the allow_stitch toggle. Null when mediaType is photo.
        - `enabled` boolean — Whether the creator permits this interaction. False means they disabled it in the TikTok app. This is availability, never the value the user selected.
        - `required` boolean — Whether tiktokSettings.allow_stitch must be supplied when creating a post. Always true, because TikTok forbids defaulting it.
        - `default` boolean — Initial value a post composer should render. A UI seed only, never applied server-side when the field is omitted.
        - `label` string — Human-readable toggle label.
  - `commercialContentTypes` object[] — Available commercial content disclosure options
    - `value` string
    - `label` string
    - `requires` string[]

## Other responses

- `400` — Account is not a TikTok account
- `401` — Unauthorized
- `404` — Resource not found
- `429` — Creator has reached TikTok daily posting limit

## Changes

- **2026-09-08** `d7a8fa118ef0` — 3 info
  - added the optional property `postingLimits/interactionSettings/allow_comment` to the response with the `200` status
  - added the optional property `postingLimits/interactionSettings/allow_duet` to the response with the `200` status
  - added the optional property `postingLimits/interactionSettings/allow_stitch` to the response with the `200` status

[Change history](https://skmtc.dev/zernio/apis/zernio-api/changes/v1/accounts/:accountId/tiktok/creator-info/get.md)

---

[API](https://skmtc.dev/zernio/apis/zernio-api.md) · [All operations](https://skmtc.dev/zernio/apis/zernio-api/llms.txt) · [OpenAPI document](https://skmtc.dev/zernio/apis/zernio-api/revisions/be448f13ecdc?raw)
