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

# List Jobs



## OpenAPI

````yaml GET /jobs
openapi: 3.1.0
info:
  title: Mindcase API
  version: 1.0.0
  description: >-
    The Mindcase API provides programmatic access to 30+ data scraping and
    enrichment agents. Collect structured data from Instagram, LinkedIn,
    YouTube, Google Maps, and more.
servers:
  - url: https://api.mindcase.co/api/v1
security:
  - bearerAuth: []
tags:
  - name: Agents
    description: Browse and run data agents
  - name: Jobs
    description: Track and manage agent jobs
  - name: Balance
    description: Check remaining USD balance
paths:
  /jobs:
    get:
      tags:
        - Jobs
      summary: List jobs
      operationId: listJobs
      parameters:
        - name: status
          in: query
          required: false
          schema:
            type: string
            enum:
              - queued
              - running
              - completed
              - failed
              - cancelled
          example: completed
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            default: 20
          example: 10
      responses:
        '200':
          description: List of jobs
          content:
            application/json:
              schema:
                type: object
                required:
                  - jobs
                properties:
                  jobs:
                    type: array
                    items:
                      $ref: '#/components/schemas/JobSummary'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  schemas:
    JobSummary:
      type: object
      required:
        - id
        - agent
        - status
        - row_count
        - usd_used
        - created_at
        - completed_at
      properties:
        id:
          type: string
          example: job_abc123def456
        agent:
          type: string
          example: instagram/profiles
        status:
          type: string
          enum:
            - queued
            - running
            - completed
            - failed
            - cancelled
          example: completed
        row_count:
          type: integer
          example: 2
        usd_used:
          type: number
          example: 0.007
        created_at:
          type: string
          format: date-time
          example: '2026-03-31T10:15:00Z'
        completed_at:
          type:
            - string
            - 'null'
          format: date-time
          example: '2026-03-31T10:15:47Z'
    Error:
      type: object
      required:
        - error
        - message
      properties:
        error:
          type: string
        message:
          type: string
  responses:
    Unauthorized:
      description: Missing or invalid API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error: unauthorized
            message: >-
              Invalid or missing API key. Include your key in the Authorization
              header as 'Bearer mk_live_...'.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key in the format `mk_live_...`

````