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

# List Enrichment Jobs

> List enrichment jobs for your organization.

**Query parameters:**
- `status`: Filter by status (`running`, `completed`, `failed`, `cancelled`)
- `limit`: Max results (1-100, default 20)
- `offset`: Pagination offset (default 0)

**Example:**
```
GET /api/public/enrich/jobs?status=running&limit=10
```



## OpenAPI

````yaml /api-reference/openapi.json get /public/enrich/jobs
openapi: 3.1.0
info:
  title: Rastro Public API
  description: >-
    Public API for enrichment, catalog management, workflows, activities,
    snapshots, taxonomy, and MCP integrations.
  version: 0.1.0
servers:
  - url: https://catalogapi.rastro.ai/api
security:
  - bearerAuth: []
paths:
  /public/enrich/jobs:
    get:
      tags:
        - Enrich
      summary: List Enrichment Jobs
      description: >-
        List enrichment jobs for your organization.


        **Query parameters:**

        - `status`: Filter by status (`running`, `completed`, `failed`,
        `cancelled`)

        - `limit`: Max results (1-100, default 20)

        - `offset`: Pagination offset (default 0)


        **Example:**

        ```

        GET /api/public/enrich/jobs?status=running&limit=10

        ```
      operationId: list_enrichment_jobs_api_public_enrich_jobs_get
      parameters:
        - name: status
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Status
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            default: 20
            title: Limit
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            default: 0
            title: Offset
        - name: X-Organization-Id
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Organization-Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - bearerAuth: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Rastro API key or user token

````