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

# Get job detail for an owned job



## OpenAPI

````yaml /openapi.json get /v1/jobs/{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/jobs/{jobId}:
    get:
      summary: Get job detail for an owned job
      operationId: getJob
      parameters:
        - name: jobId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Job detail
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserJobDetail'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          description: Job not found or not owned by the authenticated user
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
      security:
        - bearerAuth: []
components:
  schemas:
    UserJobDetail:
      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'
        data:
          description: Job result data (shape depends on queue type)
          type:
            - object
            - 'null'
        input:
          description: Job input parameters
          type:
            - object
            - 'null'
    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)

````