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

# Get Video Status



## OpenAPI

````yaml openapis/video.json get /v1/video/status/{video_id}
openapi: 3.1.0
info:
  title: Video Routes
  version: 0.0.1
servers:
  - url: https://api.opennote.com
security: []
paths:
  /v1/video/status/{video_id}:
    get:
      summary: Get Video Status
      operationId: get_video_status_video_status__video_id__get
      parameters:
        - name: video_id
          in: path
          required: true
          schema:
            type: string
            title: Video Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VideoJobStatusResponse'
        '401':
          description: Invalid API key or unauthorized access
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '429':
          description: Rate limit exceeded
          content:
            application/json:
              schema:
                properties:
                  error:
                    type: string
                type: object
          headers:
            Retry-After:
              description: Number of seconds to wait before retrying
              schema:
                type: integer
        '500':
          description: Internal server error
      security:
        - HTTPBearer: []
components:
  schemas:
    VideoJobStatusResponse:
      properties:
        success:
          type: boolean
          title: Success
        message:
          anyOf:
            - type: string
            - type: 'null'
          title: Message
        completion_percentage:
          anyOf:
            - type: number
            - type: 'null'
          title: Completion Percentage
        video_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Video Id
        status:
          type: string
          enum:
            - pending
            - completed
            - failed
            - status_error
          title: Status
        response:
          anyOf:
            - $ref: '#/components/schemas/VideoResponse'
            - type: 'null'
        error:
          anyOf:
            - type: string
            - type: 'null'
          title: Error
      type: object
      required:
        - success
        - status
      title: VideoJobStatusResponse
      description: Response model for video job status checks.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    VideoResponse:
      properties:
        success:
          type: boolean
          title: Success
        error:
          anyOf:
            - type: string
            - type: 'null'
          title: Error
        s3_url:
          anyOf:
            - type: string
            - type: 'null'
          title: S3 Url
        b64_video:
          anyOf:
            - type: string
            - type: 'null'
          title: B64 Video
        title:
          anyOf:
            - type: string
            - type: 'null'
          title: Title
        transcript:
          anyOf:
            - type: string
            - type: 'null'
          title: Transcript
        sources:
          anyOf:
            - items:
                $ref: '#/components/schemas/SimpleSource'
              type: array
            - type: 'null'
          title: Sources
        cost:
          anyOf:
            - type: number
            - type: 'null'
          title: Cost
          default: 0
        model:
          anyOf:
            - type: string
            - type: 'null'
          title: Model
          default: picasso
        timestamp:
          anyOf:
            - type: string
            - type: 'null'
          title: Timestamp
      type: object
      required:
        - success
      title: VideoResponse
      description: Complete video response with all metadata.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    SimpleSource:
      properties:
        url:
          type: string
          title: Url
        content:
          type: string
          title: Content
      type: object
      required:
        - url
        - content
      title: SimpleSource
      description: Represents a source used for video generation.
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````