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

# Poll video describe job status and results



## OpenAPI

````yaml /openapi.json get /v1/video/describe/{jobId}
openapi: 3.1.0
info:
  title: urltodata.ai
  description: >-
    API for extracting transcripts, metadata, and structured data from YouTube,
    TikTok, Instagram, X (Twitter), Facebook, and the web.
  version: 0.1.0
servers:
  - url: https://api.urltodata.ai
    description: Production API
security:
  - bearerAuth: []
paths:
  /v1/video/describe/{jobId}:
    get:
      summary: Poll video describe job status and results
      operationId: getVideoDescribeStatus
      parameters:
        - name: jobId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Video describe job status
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VideoDescribeJobResponse'
components:
  schemas:
    VideoDescribeJobResponse:
      type: object
      properties:
        status:
          type: string
          enum:
            - pending
            - active
            - completed
            - failed
        attempts:
          type: integer
        maxAttempts:
          type: integer
        durationMs:
          type:
            - integer
            - 'null'
        error:
          type: string
        url:
          type: string
        summary:
          type: string
        frames:
          type: array
          items:
            type: object
            properties:
              timestampSec:
                type: number
              description:
                type: string
        transcript:
          type: string
        model:
          type: string
        frameCount:
          type: integer
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      x-default: your-api-key
      description: API key as Bearer token (e.g. Bearer mp_abc123_secret)

````