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

# Get job

> Retrieve progress, usage, and links to completed output files.

Requires `jobs:read`. Only jobs belonging to your account are visible. Poll every five seconds until `completed`, `failed`, or `canceled`.

Results include a captioned MP4, SRT subtitles, and a JSON transcript. Download them before `expires_at`. URLs are `null` before completion or after file expiration.

<Note>An HTTP `200` response may contain a failed job. Check the `status` and `error` fields.</Note>


## OpenAPI

````yaml openapi.json GET /v1/jobs/{id}
openapi: 3.1.0
info:
  title: CaptionCraft API
  version: 1.0.0
  description: >-
    Create captioned MP4 videos from a video URL. Jobs are asynchronous. Poll
    every 5 seconds. Media is retained for 24 hours; request a fresh job
    response to retrieve result URLs. All word timestamps use seconds.
servers:
  - url: https://api.captioncraft.studio
security: []
paths:
  /v1/jobs/{id}:
    get:
      summary: Get progress and result downloads
      operationId: getSubtitleJob
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: >-
            Job ID returned by a create request. The job must belong to your
            account.
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Job'
              example:
                id: example_job_id
                status: ingesting
                progress: 0
                created_at: '2026-09-21T10:00:00Z'
                expires_at: null
                video: null
                subtitles:
                  srt_url: null
                  transcript_url: null
                metadata: null
                usage:
                  reserved_seconds: 60
                  billed_seconds: 0
                error: null
        '401':
          description: Missing or invalid API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Missing key scope or disabled account
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Job or endpoint not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '429':
          description: Rate or concurrency limit exceeded; honor Retry-After
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          headers:
            Retry-After:
              description: Minimum retry delay in seconds.
              schema:
                type: integer
                example: 5
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - apiKey: []
components:
  schemas:
    Job:
      type: object
      required:
        - id
        - status
        - progress
        - usage
      properties:
        id:
          type: string
        status:
          enum:
            - queued
            - ingesting
            - transcribing
            - rendering
            - completed
            - failed
            - canceled
        progress:
          type: number
          minimum: 0
          maximum: 100
          description: Progress from 0 to 100; not an estimate of remaining time.
        created_at:
          type: string
          format: date-time
        expires_at:
          type:
            - string
            - 'null'
          format: date-time
          description: Result retention deadline, 24 hours after the terminal transition.
        video:
          type:
            - object
            - 'null'
          properties:
            url:
              type: string
              format: uri
            content_type:
              const: video/mp4
          description: Video download details. Null before completion or after expiration.
        subtitles:
          type: object
          properties:
            srt_url:
              type:
                - string
                - 'null'
            transcript_url:
              type:
                - string
                - 'null'
          description: Download URLs are null until completion and after expiration.
        usage:
          type: object
          properties:
            reserved_seconds:
              type: integer
            billed_seconds:
              type: integer
          description: Current reservation and final charge, in whole seconds.
        error:
          type:
            - object
            - 'null'
          properties:
            code:
              type: string
            message:
              type: string
        metadata:
          type:
            - object
            - 'null'
          description: Source dimensions and duration, available after inspection.
          properties:
            width:
              type: integer
            height:
              type: integer
            duration_seconds:
              type: number
    Error:
      type: object
      required:
        - error
      properties:
        error:
          type: object
          properties:
            code:
              type: string
            message:
              type: string
            request_id:
              type: string
          required:
            - code
            - message
            - request_id
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      bearerFormat: cc_ API key

````