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

# Retrieve a video job



## OpenAPI

````yaml /api-reference/openapi.json get /v1/videos/{video_id}
openapi: 3.1.0
info:
  title: SynapsAI Inference API
  version: 1.0.0
servers:
  - url: https://api.synapsai.cloud
    description: Production server
security: []
paths:
  /v1/videos/{video_id}:
    get:
      summary: Retrieve a video job
      parameters:
        - name: video_id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Video job details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Video'
components:
  schemas:
    Video:
      type: object
      description: Structured information describing a generated video job
      properties:
        id:
          type: string
        object:
          type: string
          enum:
            - video
          default: video
        created_at:
          type: integer
        completed_at:
          type:
            - integer
            - 'null'
        error:
          $ref: '#/components/schemas/VideoCreateError'
        expires_at:
          type:
            - integer
            - 'null'
        model:
          type: string
        prompt:
          type:
            - string
            - 'null'
        seconds:
          type: integer
        size:
          type: string
        status:
          $ref: '#/components/schemas/VideoStatus'
      required:
        - id
        - object
        - created_at
        - model
        - seconds
        - size
        - status
    VideoCreateError:
      type: object
      description: Video generation error details
      properties:
        code:
          type: string
          nullable: true
        message:
          type: string
          nullable: true
    VideoStatus:
      type: string
      description: Video generation lifecycle states
      enum:
        - queued
        - in_progress
        - completed
        - failed

````