> ## 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.

# Get Avatar Detail

> Query detailed information of a specific avatar by its ID. Returns complete avatar configuration including provider settings, provider name, model, voice, and prompt information.



## OpenAPI

````yaml GET /api/open/v1/avatar/detail
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/detail:
    get:
      tags:
        - Avatar
      summary: Get Avatar Detail
      description: >-
        Query detailed information of a specific avatar by its ID. Returns
        complete avatar configuration including provider settings, provider
        name, model, voice, and prompt information.
      operationId: getAvatarDetail
      parameters:
        - name: avatarId
          in: query
          description: The avatar ID to query
          required: true
          schema:
            type: string
            example: fbc269dcd0a738cf8e5e0f465671303c
      responses:
        '200':
          description: Avatar detail retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AvatarDetailResponse'
              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
                  providerName: openai
                  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: Avatar not found or permission denied
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NavtalkErrorResponse'
              examples:
                notFound:
                  summary: Avatar not found
                  value:
                    code: 400
                    message: Avatar not found
                noPermission:
                  summary: No permission
                  value:
                    code: 400
                    message: No permission to access this avatar
      security:
        - navtalkLicenseAuth: []
components:
  schemas:
    AvatarDetailResponse:
      type: object
      properties:
        code:
          type: integer
          example: 200
        message:
          type: string
          example: SUCCESS
        data:
          $ref: '#/components/schemas/OpenAvatarExtend'
    NavtalkErrorResponse:
      type: object
      properties:
        code:
          type: integer
          example: 400
        message:
          type: string
          example: Invalid license key
    OpenAvatarExtend:
      type: object
      properties:
        id:
          type: string
          description: The unique avatar ID.
          example: fbc269dcd0a738cf8e5e0f465671303c
        name:
          type: string
          description: Display name of the avatar.
          example: navtalk.Leo
        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
        providerName:
          type: string
          description: Provider type identifier (e.g., 'openai', 'elevenlabs').
          example: openai
        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_...)

````