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

# Download TikTok profile picture

> Use this operation to get the profile picture (avatar) of one TikTok account as a direct-downloadable image URL with normalized profile metadata. Pass a tiktok.com profile URL, a bare @handle, or a plain username.



## OpenAPI

````yaml /api-reference/openapi.json post /v1/tiktok/profile/picture/download
openapi: 3.1.0
info:
  description: >-
    Direct authenticated APIs for public social data, people data, transcripts,
    documents, text, and SEO. Send an API key as a Bearer token. Responses never
    include provider credentials or raw provider payloads.
  license:
    name: Proprietary
    url: https://agentbody.io
  title: AgentBody API
  version: 2026-09-24.1
servers:
  - url: https://api.agentbody.io
security:
  - bearerAuth: []
paths:
  /v1/tiktok/profile/picture/download:
    post:
      tags:
        - tiktok
      summary: Download TikTok profile picture
      description: >-
        Use this operation to get the profile picture (avatar) of one TikTok
        account as a direct-downloadable image URL with normalized profile
        metadata. Pass a tiktok.com profile URL, a bare @handle, or a plain
        username.
      operationId: post_v1_tiktok_profile_picture_download
      parameters:
        - $ref: '#/components/parameters/IdempotencyKey'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TikTokProfilePictureDownloadRequest'
        required: true
      responses:
        '200':
          $ref: '#/components/responses/TikTokProfilePictureDownloadSuccess'
        '400':
          content:
            application/json:
              example:
                error:
                  code: INVALID_ARGUMENT
                  message: example error
              schema:
                additionalProperties: false
                properties:
                  error:
                    additionalProperties: false
                    properties:
                      code:
                        const: INVALID_ARGUMENT
                        type: string
                      message:
                        type: string
                    required:
                      - code
                      - message
                    type: object
                required:
                  - error
                type: object
          description: Correct the input; do not retry unchanged.
          headers:
            X-Request-Id:
              description: Gateway request identifier for support and audit.
              schema:
                format: uuid
                type: string
        '401':
          content:
            application/json:
              example:
                error:
                  code: UNAUTHENTICATED
                  message: example error
              schema:
                additionalProperties: false
                properties:
                  error:
                    additionalProperties: false
                    properties:
                      code:
                        const: UNAUTHENTICATED
                        type: string
                      message:
                        type: string
                    required:
                      - code
                      - message
                    type: object
                required:
                  - error
                type: object
          description: Configure a valid API key; do not retry unchanged.
          headers:
            X-Request-Id:
              description: Gateway request identifier for support and audit.
              schema:
                format: uuid
                type: string
        '409':
          content:
            application/json:
              example:
                error:
                  code: CONFLICT
                  message: example error
              schema:
                additionalProperties: false
                properties:
                  error:
                    additionalProperties: false
                    properties:
                      code:
                        const: CONFLICT
                        type: string
                      message:
                        type: string
                    required:
                      - code
                      - message
                    type: object
                required:
                  - error
                type: object
          description: Follow the documented Idempotency-Key behavior before retrying.
          headers:
            X-Request-Id:
              description: Gateway request identifier for support and audit.
              schema:
                format: uuid
                type: string
        '502':
          content:
            application/json:
              example:
                error:
                  code: UPSTREAM_INVALID_RESPONSE
                  message: example error
              schema:
                additionalProperties: false
                properties:
                  error:
                    additionalProperties: false
                    properties:
                      code:
                        const: UPSTREAM_INVALID_RESPONSE
                        type: string
                      message:
                        type: string
                    required:
                      - code
                      - message
                    type: object
                required:
                  - error
                type: object
          description: Retry with backoff, then report temporary unavailability.
          headers:
            X-Request-Id:
              description: Gateway request identifier for support and audit.
              schema:
                format: uuid
                type: string
        '503':
          content:
            application/json:
              example:
                error:
                  code: UPSTREAM_UNAVAILABLE
                  message: example error
              schema:
                additionalProperties: false
                properties:
                  error:
                    additionalProperties: false
                    properties:
                      code:
                        const: UPSTREAM_UNAVAILABLE
                        type: string
                      message:
                        type: string
                    required:
                      - code
                      - message
                    type: object
                required:
                  - error
                type: object
          description: Retry with backoff, then report temporary unavailability.
          headers:
            X-Request-Id:
              description: Gateway request identifier for support and audit.
              schema:
                format: uuid
                type: string
        '504':
          content:
            application/json:
              example:
                error:
                  code: UPSTREAM_TIMEOUT
                  message: example error
              schema:
                additionalProperties: false
                properties:
                  error:
                    additionalProperties: false
                    properties:
                      code:
                        const: UPSTREAM_TIMEOUT
                        type: string
                      message:
                        type: string
                    required:
                      - code
                      - message
                    type: object
                required:
                  - error
                type: object
          description: Retry with backoff, then report temporary unavailability.
          headers:
            X-Request-Id:
              description: Gateway request identifier for support and audit.
              schema:
                format: uuid
                type: string
components:
  parameters:
    IdempotencyKey:
      description: Optional key for safely retrying a billable write request.
      example: request-20260819-001
      in: header
      name: Idempotency-Key
      required: false
      schema:
        maxLength: 255
        minLength: 1
        type: string
  schemas:
    TikTokProfilePictureDownloadRequest:
      additionalProperties: false
      properties:
        username:
          description: >-
            TikTok account reference — profile URL (tiktok.com/@handle), bare
            @handle, or plain username.
          type: string
      required:
        - username
      type: object
    TikTokProfilePictureDownloadResult:
      additionalProperties: false
      properties:
        bio:
          type: string
        display_name:
          type: string
        followers:
          format: int64
          type: integer
        following:
          format: int64
          type: integer
        likes:
          format: int64
          type: integer
        profile_picture_url:
          description: >-
            Direct-downloadable profile picture (avatar) image URL. TikTok CDN
            links are signed and expire; download promptly.
          format: uri
          type: string
        profile_url:
          format: uri
          type: string
        username:
          type: string
        videos:
          format: int64
          type: integer
      required:
        - username
        - profile_url
        - profile_picture_url
      type: object
  responses:
    TikTokProfilePictureDownloadSuccess:
      content:
        application/json:
          example:
            bio: Example bio
            display_name: Example Creator
            followers: 151200000
            following: 1537
            likes: 11300000000
            profile_picture_url: https://p16-sign-va.tiktokcdn.com/example.jpeg
            profile_url: https://www.tiktok.com/@example
            username: example
            videos: 2346
          schema:
            $ref: '#/components/schemas/TikTokProfilePictureDownloadResult'
      description: >-
        Direct TikTok profile picture link and normalized public profile
        metadata.
      headers:
        X-Request-Id:
          description: Gateway request identifier for support and audit.
          schema:
            format: uuid
            type: string
  securitySchemes:
    bearerAuth:
      scheme: bearer
      type: http

````