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

# List jobs for the authenticated user



## OpenAPI

````yaml /openapi.json get /v1/jobs
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/jobs:
    get:
      summary: List jobs for the authenticated user
      operationId: listJobs
      parameters:
        - name: status
          in: query
          description: Filter by job status
          schema:
            type: string
            enum:
              - queued
              - active
              - completed
              - failed
        - name: limit
          in: query
          description: Max jobs to return
          schema:
            type: integer
            default: 20
        - name: offset
          in: query
          description: Pagination offset
          schema:
            type: integer
            default: 0
      responses:
        '200':
          description: Paginated job list
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserJobList'
        '401':
          $ref: '#/components/responses/Unauthorized'
      security:
        - bearerAuth: []
components:
  schemas:
    UserJobList:
      type: object
      properties:
        jobs:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              queue:
                type: string
              status:
                type: string
                enum:
                  - queued
                  - active
                  - completed
                  - failed
              createdAt:
                type: integer
                description: Unix timestamp
              completedAt:
                type:
                  - integer
                  - 'null'
                description: Unix timestamp
              durationMs:
                type:
                  - integer
                  - 'null'
              error:
                type:
                  - string
                  - 'null'
        limit:
          type: integer
        offset:
          type: integer
        total:
          type: integer
    ApiError:
      type: object
      properties:
        error:
          type: string
        message:
          type: string
        details:
          type: string
        documentationUrl:
          type: string
  responses:
    Unauthorized:
      description: Authentication required or invalid credentials
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      x-default: your-api-key
      description: API key as Bearer token (e.g. Bearer mp_abc123_secret)

````