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

# Get Enrichments

> Retrieve a paginated list of enrichment jobs for the authenticated account



## OpenAPI

````yaml /openapi.yaml get /enrichments
openapi: 3.0.0
info:
  title: AudienceLab API
  version: 1.0.0
  description: API endpoints for AudienceLab
servers:
  - url: https://api.audiencelab.io
    description: Production API
security:
  - ApiKeyAuth: []
tags:
  - name: Audience
  - name: Pixel
  - name: Enrichment
paths:
  /enrichments:
    get:
      tags:
        - Enrichment
      summary: Get Enrichments
      description: >-
        Retrieve a paginated list of enrichment jobs for the authenticated
        account
      parameters:
        - name: page
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            default: 1
          description: Page number (1-indexed)
          example: 1
        - name: page_size
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            maximum: 1000
            default: 100
          description: Number of items per page (max 1000)
          example: 100
      responses:
        '200':
          description: Successfully retrieved enrichments list
          content:
            application/json:
              schema:
                type: object
                properties:
                  total_records:
                    type: integer
                    example: 150
                  page_size:
                    type: integer
                    example: 100
                  page:
                    type: integer
                    example: 1
                  total_pages:
                    type: integer
                    example: 2
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          example: ca80f27b-9ae8-4351-99ac-51d5b5ebe423
                        name:
                          type: string
                          example: '1761687181'
                        status:
                          type: string
                          example: IN_QUEUE
                        csv_url:
                          type: string
                          nullable: true
                          example: gs://bucket/path/to/file.csv.gz
                        total:
                          type: integer
                          nullable: true
                          example: 1500
                        created_at:
                          type: string
                          format: date-time
                          example: '2025-10-29T10:30:00Z'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized - missing or invalid API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    ErrorResponse:
      type: object
      properties:
        message:
          type: string
          example: error message
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-Api-Key

````