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

# List Avatars

> Returns all avatars owned by the current license account.



## OpenAPI

````yaml GET /api/open/v1/avatar/list
openapi: 3.1.0
info:
  title: NavTalk API
  description: NavTalk API for AI avatar management, file uploads, and video generation
  version: 1.0.0
servers:
  - url: https://api.navtalk.ai
    description: NavTalk Production Environment Server
  - url: https://qaapi.navtalk.ai
    description: NavTalk QA Environment Server
  - url: https://devapi.navtalk.ai
    description: NavTalk Development Environment Server
security:
  - navtalkLicenseAuth: []
paths:
  /api/open/v1/avatar/list:
    get:
      tags:
        - Avatar
      summary: List Avatars
      description: Returns all avatars owned by the current license account.
      operationId: listAvatars
      parameters: []
      responses:
        '200':
          description: Avatar list retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AvatarListResponse'
              example:
                code: 200
                message: SUCCESS
                data:
                  - id: fbc269dcd0a738cf8e5e0f465671303c
                    name: my-image-avatar
                    url: https://example.com/photo.jpg
                    thumbnailUrl: https://example.com/photo-thumbnail.jpg
                    providerId: b92a28fb2ea737457c7f13ba554759c0
                    model: agent_3201khcbet2vf349gpmtfg83q0hy
                    voice: CwhRBWXzGAHq8TQ4Fs17
                    firstMessage: Hi! How can I help you today?
                    prompt: You are a helpful assistant.
                    videoFile: false
                    status: Success
        '400':
          description: License validation failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NavtalkErrorResponse'
              example:
                code: 400
                message: Invalid license key
      security:
        - navtalkLicenseAuth: []
components:
  schemas:
    AvatarListResponse:
      type: object
      properties:
        code:
          type: integer
          example: 200
        message:
          type: string
          example: SUCCESS
        data:
          type: array
          items:
            $ref: '#/components/schemas/OpenAvatar'
    NavtalkErrorResponse:
      type: object
      properties:
        code:
          type: integer
          example: 400
        message:
          type: string
          example: Invalid license key
    OpenAvatar:
      type: object
      properties:
        id:
          type: string
          description: The unique avatar ID.
          example: fbc269dcd0a738cf8e5e0f465671303c
        name:
          type: string
          description: Display name of the avatar.
          example: my-image-avatar
        url:
          type: string
          description: >-
            Source media URL used to create the avatar. Supported image formats:
            jpg, jpeg, png, bmp, webp. Supported video formats: mp4, mov, webm,
            avi, m4v.
          example: https://example.com/avatar.mp4
        thumbnailUrl:
          type: string
          description: Thumbnail image URL for previewing the avatar.
          example: https://example.com/avatar-thumbnail.jpg
        providerId:
          type: string
          description: Provider ID associated with this avatar.
          example: b92a28fb2ea737457c7f13ba554759c0
        model:
          type: string
          description: >-
            Model key used by this avatar. For ElevenLabs agents, see
            [ElevenLabs Agents
            Quickstart](https://elevenlabs.io/docs/eleven-agents/quickstart).
            For Cartesia agents, see [Cartesia Voices Agents
            Quickstart](https://play.cartesia.ai/agents).
          example: agent_3201khcbet2vf349gpmtfg83q0hy
        voice:
          type: string
          description: Voice key used by this avatar.
          example: CwhRBWXzGAHq8TQ4Fs17
        firstMessage:
          type: string
          description: Opening message spoken by the avatar.
          example: Hi! How can I help you today?
        prompt:
          type: string
          description: System prompt for the avatar.
          example: You are a helpful assistant.
        videoFile:
          type: boolean
          description: >-
            Whether the source media is a video file (`true`) or an image file
            (`false`).
          example: true
        status:
          type: string
          enum:
            - Draft
            - Pending
            - Processing
            - Success
            - Failed
          description: Current training status of the avatar.
          example: Success
  securitySchemes:
    navtalkLicenseAuth:
      type: apiKey
      in: header
      name: license
      description: NavTalk API license key (e.g. sk_navtalk_...)

````