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

> Query the training status of an avatar job. Poll this endpoint after calling `/avatar/add` until the status becomes `Success` or `Failed`.

Possible statuses: `Draft`, `Pending`, `Processing`, `Success`, `Failed`.



## OpenAPI

````yaml GET /api/open/v1/avatar/status
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/status:
    get:
      tags:
        - Avatar
      summary: Get Avatar Status
      description: >-
        Query the training status of an avatar job. Poll this endpoint after
        calling `/avatar/add` until the status becomes `Success` or `Failed`.


        Possible statuses: `Draft`, `Pending`, `Processing`, `Success`,
        `Failed`.
      operationId: getAvatarStatus
      parameters:
        - name: jobId
          in: query
          description: The job ID returned by `/avatar/add`
          required: true
          schema:
            type: string
            example: 096f43cf-4dbf-47d5-9583-8e3d0c3a5641
      responses:
        '200':
          description: Status retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AvatarStatusResponse'
              examples:
                success:
                  summary: Training complete
                  value:
                    code: 200
                    message: SUCCESS
                    data: Success
                processing:
                  summary: Still processing
                  value:
                    code: 200
                    message: SUCCESS
                    data: Processing
                pending:
                  summary: Task is pending
                  value:
                    code: 200
                    message: SUCCESS
                    data: Pending
                failed:
                  summary: Training failed
                  value:
                    code: 200
                    message: SUCCESS
                    data: Failed
        '400':
          description: Job not found or validation error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NavtalkErrorResponse'
              example:
                code: 400
                message: Avatar not found
      security:
        - navtalkLicenseAuth: []
components:
  schemas:
    AvatarStatusResponse:
      type: object
      properties:
        code:
          type: integer
          example: 200
        message:
          type: string
          example: SUCCESS
        data:
          type: string
          enum:
            - Draft
            - Pending
            - Processing
            - Success
            - Failed
          description: Current training status of the avatar.
          example: Success
    NavtalkErrorResponse:
      type: object
      properties:
        code:
          type: integer
          example: 400
        message:
          type: string
          example: Invalid license key
  securitySchemes:
    navtalkLicenseAuth:
      type: apiKey
      in: header
      name: license
      description: NavTalk API license key (e.g. sk_navtalk_...)

````