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

# Get creator info for publishing

> Returns platform-specific creator settings needed before publishing (privacy levels, interaction toggles, posting availability). Currently supported for TikTok only; other platforms return 501.



## OpenAPI

````yaml /api-reference/openapi.json get /accounts/{id}/creator-info
openapi: 3.0.0
info:
  description: >-
    Unified social media inbox API. Read and respond to comments, DMs, reviews,
    and mentions across Instagram, Facebook, Threads, Google Business Profile,
    TikTok, LinkedIn, and YouTube through a single REST API. X/Twitter and
    Trustpilot coming soon.
  title: SocialAPI.AI
  contact:
    name: SocialAPI.AI Support
    email: support@social-api.ai
  license:
    name: MIT
  version: '1.0'
servers:
  - url: https://api.social-api.ai/v1
security: []
paths:
  /accounts/{id}/creator-info:
    get:
      tags:
        - Accounts
      summary: Get creator info for publishing
      description: >-
        Returns platform-specific creator settings needed before publishing
        (privacy levels, interaction toggles, posting availability). Currently
        supported for TikTok only; other platforms return 501.
      parameters:
        - description: Connected account ID
          name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Creator info
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.CreatorInfoResponse'
        '401':
          description: Invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.ErrorResponse'
        '404':
          description: Account not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.ErrorResponse'
        '501':
          description: Platform does not support creator info
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.ErrorResponse'
      security:
        - BearerAuth: []
components:
  schemas:
    api_endpoints.CreatorInfoResponse:
      type: object
      properties:
        avatar_url:
          description: '[platform: tiktok] Empty on other platforms'
          type: string
        can_post:
          description: '[platform: tiktok] Always false on other platforms'
          type: boolean
        interaction_settings:
          description: '[platform: tiktok] Nil on other platforms'
          allOf:
            - $ref: >-
                #/components/schemas/social-api_ai_core_api_connectors_base.InteractionSettings
        max_video_duration_sec:
          description: '[platform: tiktok] Zero on other platforms'
          type: integer
        nickname:
          description: '[platform: tiktok] Empty on other platforms'
          type: string
        platform:
          description: '[always]'
          type: string
        privacy_level_options:
          description: '[platform: tiktok] Nil on other platforms'
          type: array
          items:
            type: string
    api_endpoints.ErrorResponse:
      type: object
      properties:
        error:
          $ref: '#/components/schemas/api_endpoints.ErrorBody'
    social-api_ai_core_api_connectors_base.InteractionSettings:
      type: object
      properties:
        comment_disabled:
          description: '[platform: tiktok]'
          type: boolean
        duet_disabled:
          description: '[platform: tiktok]'
          type: boolean
        stitch_disabled:
          description: '[platform: tiktok]'
          type: boolean
    api_endpoints.ErrorBody:
      type: object
      properties:
        code:
          type: string
          example: resource.not_found
        message:
          type: string
          example: Account not found
        meta:
          type: object
          additionalProperties: {}
  securitySchemes:
    BearerAuth:
      description: >-
        Prefix your API key with "Bearer ". Example: `Authorization: Bearer
        sapi_key_...`
      type: apiKey
      name: Authorization
      in: header

````