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



## OpenAPI

````yaml /openapi.yaml get /pixels
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:
  /pixels:
    get:
      tags:
        - Pixel
      summary: Get Pixels
      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 pixels list
          content:
            application/json:
              schema:
                type: object
                properties:
                  total_records:
                    type: integer
                    example: 10
                  page_size:
                    type: integer
                    example: 100
                  page:
                    type: integer
                    example: 1
                  total_pages:
                    type: integer
                    example: 1
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          example: 003daacb-d261-421c-9781-311df9c381d8
                        provider:
                          type: string
                          enum:
                            - v3
                            - v4
                          example: v4
                        install_url:
                          type: string
                          description: Installation URL derived from provider data
                          example: https://cdn.example.com/p.js
                        website_name:
                          type: string
                          example: Marketing Campaign Pixel
                        website_url:
                          type: string
                          example: https://example.com
                        webhook_url:
                          type: string
                          nullable: true
                          example: null
                        last_sync_status:
                          type: string
                          nullable: true
                        last_sync_count:
                          type: integer
                          nullable: true
                        last_error_message:
                          type: string
                          nullable: true
                        last_sync_start:
                          type: string
                          nullable: true
                        last_sync_end:
                          type: string
                          nullable: true
                        last_sync_duration:
                          type: string
                          nullable: true
        '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

````