> ## 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.

# Extract structured data from video content using AI



## OpenAPI

````yaml /openapi.json post /v1/extract
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/extract:
    post:
      summary: Extract structured data from video content using AI
      operationId: extractData
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ExtractRequest'
      responses:
        '202':
          description: Job created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JobId'
components:
  schemas:
    ExtractRequest:
      type: object
      required:
        - url
      properties:
        url:
          type: string
          format: uri
        prompt:
          type: string
        schema:
          type: object
    JobId:
      type: object
      properties:
        jobId:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      x-default: your-api-key
      description: API key as Bearer token (e.g. Bearer mp_abc123_secret)

````