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

# Get Task Status

> Poll the status and result of an asynchronous audio processing task.



## OpenAPI

````yaml GET /v1/task/{task_id}
openapi: 3.0.1
info:
  title: FineVoice API
  description: >-
    This is the documentation for the FineVoice API. If you have any questions
    or need assistance, please contact support@finevoice.ai.
  version: v1
servers:
  - url: https://apis.finevoice.ai
    description: FineVoice API Gateway
security:
  - BearerAuth: []
paths:
  /v1/task/{task_id}:
    get:
      tags:
        - Task
      summary: Get Task Status
      description: Poll the status and result of an asynchronous audio processing task.
      operationId: GetTaskStatus
      parameters:
        - name: task_id
          in: path
          required: true
          schema:
            type: string
          description: The task identifier returned by a previous API call.
          example: a1b2c3d4-e5f6-7890-abcd-ef1234567890
      responses:
        '200':
          description: Task status and result.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TaskQueryResponse'
        '401':
          description: Unauthorized — invalid or missing API key.
        '404':
          description: Task not found.
components:
  schemas:
    TaskQueryResponse:
      type: object
      description: Response for task status polling.
      properties:
        status:
          type: integer
          format: int32
          description: HTTP-style status code (200 for completed, 202 for in-progress).
        url:
          type: string
          description: Download URL of the result.
          example: https://cdn.finevoice.ai/output/result.mp3
        taskId:
          type: string
          description: Task identifier.
          example: a1b2c3d4-e5f6-7890-abcd-ef1234567890
        error:
          $ref: '#/components/schemas/ApiError'
        urls:
          type: array
          items:
            type: string
          description: Multiple output URLs.
        service:
          type: string
        port:
          type: string
        timestamp:
          type: string
    ApiError:
      type: object
      properties:
        code:
          type: string
          description: Error code.
        message:
          type: string
          description: Error message.
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: 'Bearer token (API key). Format: `Bearer {your_api_key}`'

````