> ## Documentation Index
> Fetch the complete documentation index at: https://docs.markifact.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Creator Info

> Returns the connected TikTok account's posting options: which privacy levels are allowed, whether comments, Duet, or Stitch are turned off for the account, and the maximum video length

Returns the connected TikTok account's posting options: which privacy levels are allowed, whether comments, Duet, or Stitch are turned off for the account, and the maximum video length. TikTok requires these to be checked before publishing, so call this before tiktok\_publish\_post.

|                     |                           |
| ------------------- | ------------------------- |
| **App**             | TikTok                    |
| **Operation ID**    | `tiktok_get_creator_info` |
| **Type**            | Action                    |
| **Connection**      | `tiktok` (required)       |
| **Credits per run** | Free                      |

## Inputs

| Field | Type | Required | Default | Description |
| ----- | ---- | -------- | ------- | ----------- |

## Output

**Type**: `Dict`

Returns the creator's display details and the posting options TikTok allows for the account.

**Fields**: `creator_username`, `creator_nickname`, `creator_avatar_url`, `privacy_level_options`, `comment_disabled`, `duet_disabled`, `stitch_disabled`, `max_video_post_duration_sec`

**Example**:

```json theme={"dark"}
{
  "creator_username": "mybrand",
  "creator_nickname": "My Brand",
  "privacy_level_options": [
    "PUBLIC_TO_EVERYONE",
    "MUTUAL_FOLLOW_FRIENDS",
    "SELF_ONLY"
  ],
  "comment_disabled": false,
  "duet_disabled": false,
  "stitch_disabled": false,
  "max_video_post_duration_sec": 600
}
```
