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

# List jobs

> List tool jobs for the organization, ordered by creation date (newest first).



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/dev/tools/jobs
openapi: 3.0.0
info:
  title: Autype Developer API
  description: >-
    Autype Developer API for programmatic document generation.


    ## Authentication

    All endpoints require an API key. Include it in the `X-API-Key` header or as
    a Bearer token.


    ## Rate Limiting

    API requests are rate-limited to 100 requests per minute per API key.


    ## Token Billing

    Rendering operations consume tokens from your organization's balance.
  version: '1.0'
  contact: {}
servers:
  - url: https://api.autype.com
    description: Production
security: []
tags:
  - name: Temporary Images
    description: Upload and manage temporary images for document rendering
  - name: Render
    description: Render documents to PDF, DOCX, or ODT
  - name: Bulk Render
    description: Bulk document generation with variable substitution
  - name: Documents
    description: Document variable inspection
  - name: Projects
    description: List organization projects
paths:
  /api/v1/dev/tools/jobs:
    get:
      tags:
        - developer-api
      summary: List jobs
      description: >-
        List tool jobs for the organization, ordered by creation date (newest
        first).
      operationId: ToolsController_listJobs_v1
      parameters:
        - name: limit
          required: false
          in: query
          description: 'Items per page (default: 20, max: 100)'
          schema:
            type: number
        - name: offset
          required: false
          in: query
          description: 'Number of items to skip (default: 0)'
          schema:
            type: number
      responses:
        '200':
          description: List of jobs
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ToolsJobListResponseDto'
      security:
        - api-key: []
components:
  schemas:
    ToolsJobListResponseDto:
      type: object
      properties:
        jobs:
          description: List of jobs
          type: array
          items:
            $ref: '#/components/schemas/ToolsJobResponseDto'
        total:
          type: number
          description: Total number of jobs
          example: 42
      required:
        - jobs
        - total
    ToolsJobResponseDto:
      type: object
      properties:
        id:
          type: string
          description: Job ID
          example: 550e8400-e29b-41d4-a716-446655440000
        action:
          type: string
          description: Action that was performed
          example: pdf.merge
        status:
          type: string
          description: Current job status
          enum:
            - PENDING
            - PROCESSING
            - COMPLETED
            - FAILED
          example: PENDING
        inputFileIds:
          description: Input file IDs used for this job
          example:
            - file-id-1
          type: array
          items:
            type: string
        outputFileId:
          type: object
          description: Output file ID (available when COMPLETED)
          nullable: true
          example: null
        error:
          type: object
          description: Error message (available when FAILED)
          nullable: true
          example: null
        result:
          type: object
          description: >-
            Structured job result data (e.g. OCR markdown/JSON, generated
            filename, PDF metadata, form fields). Available when the job
            produces a direct result instead of an output file.
        metadata:
          type: object
          description: >-
            **Deprecated** — use `result` instead. Additional metadata,
            duplicated from result for backward compatibility.
          deprecated: true
        createdAt:
          format: date-time
          type: string
          description: Job creation timestamp
        startedAt:
          type: object
          description: Job start timestamp
          nullable: true
        completedAt:
          type: object
          description: Job completion timestamp
          nullable: true
      required:
        - id
        - action
        - status
        - inputFileIds
        - outputFileId
        - error
        - createdAt
        - startedAt
        - completedAt
  securitySchemes:
    api-key:
      type: apiKey
      in: header
      name: X-API-Key
      description: API Key (starts with ak_...)

````