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

# Poll voiceover status

> Poll a voiceover generation job — returns the latest status and the finished audio file with a download URL when complete.

Poll voiceover jobs created via [Create voiceover](/docs/api-reference/voiceovers/create).

Use the `id` returned from the create response. Poll every few seconds until `status` is `COMPLETED` or `FAILED`. Jobs typically finish in \~20 seconds.

```bash theme={null}
curl "https://mvp.tryunsora.com/api/v1/voiceovers/status/GENERATION_ID" \
  -H "Authorization: Bearer uns_live_YOUR_API_KEY"
```

Example response:

```json theme={null}
{
  "success": true,
  "data": {
    "id": "cm123...",
    "status": "COMPLETED",
    "voiceId": "George",
    "outputUrl": "https://files.tryunsora.com/....mp3",
    "error": null,
    "createdAt": "2026-07-17T12:00:00.000Z",
    "updatedAt": "2026-07-17T12:00:22.000Z",
    "completedAt": "2026-07-17T12:00:22.000Z"
  }
}
```

When `status` is `COMPLETED`, download the audio from `outputUrl`.


## OpenAPI

````yaml GET /voiceovers/status/{id}
openapi: 3.1.0
info:
  title: Unsora API
  version: 1.2.0
  description: >-
    Public API for Unsora integrations. Use Bearer token from Clerk in
    Authorization header.
servers:
  - url: /api/v1
    description: Versioned API
security: []
tags:
  - name: User
  - name: Connect
  - name: Stripe
  - name: Video
  - name: Image
  - name: Influencer
  - name: Thumbnail
  - name: Clipping
  - name: Music
  - name: Voiceover
  - name: Uploads
paths:
  /voiceovers/status/{id}:
    get:
      tags:
        - Voiceover
      summary: Poll voiceover status
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Status
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VoiceoverStatusResponse'
        '404':
          description: Not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - bearerAuth: []
components:
  schemas:
    VoiceoverStatusResponse:
      type: object
      properties:
        success:
          type: boolean
        data:
          type: object
          properties:
            id:
              type: string
            status:
              type: string
            voiceId:
              type: string
            outputUrl:
              anyOf:
                - type: string
                  format: uri
                - type: 'null'
            error:
              anyOf:
                - type: string
                - type: 'null'
            createdAt:
              type: string
              format: date-time
            updatedAt:
              type: string
              format: date-time
            completedAt:
              anyOf:
                - type: string
                  format: date-time
                - type: 'null'
          required:
            - id
            - status
      required:
        - success
        - data
    ErrorResponse:
      type: object
      properties:
        success:
          type: boolean
        error:
          type: string
        code:
          type: string
        message:
          type: string
      required:
        - error
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````