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

# List tracking pixels

> Search, filter, and paginate workspace tracking pixels.

`GET /v1/tracking-pixel` requires **Tracking pixels: Read** (`tracking_pixels.view`). Optional parameters are `search`, exact `type`, `page_size`, `starting_after`, and `ending_before`. Results are newest first and contain the same complete fields as Retrieve. Provider pixels have null code fields, while custom pixels have a null `pixel_id`. Pagination cursors use `biq_pxl_...` IDs.

## Shared API behavior

Authentication is workspace-scoped; see [Authentication](/docs/api-reference/authentication). Errors use the standard envelope and request IDs described in [Errors](/docs/api-reference/errors), and requests are subject to [Rate limits](/docs/api-reference/rate-limits). This endpoint uses cursor pagination; see [Pagination](/docs/api-reference/pagination).


## OpenAPI

````yaml GET /v1/tracking-pixel
openapi: 3.1.0
info:
  title: Biqli API
  version: 1.0.0
  description: Workspace-scoped REST API for Biqli.
servers:
  - url: https://biq.li/api
security:
  - bearerAuth: []
paths:
  /v1/tracking-pixel:
    get:
      tags:
        - Tracking pixels
      summary: List tracking pixels
      description: >-
        Cursor-paginated workspace tracking pixels. Requires
        tracking_pixels.view.
      operationId: pixel.index
      parameters:
        - $ref: '#/components/parameters/Search'
        - name: type
          in: query
          description: Return only pixels with this exact type.
          schema:
            type: string
            enum:
              - facebook
              - twitter
              - google-tag-manager
              - google-analytics
              - adwords
              - bing
              - pinterest
              - linkedin
              - quora
              - adroll
              - nexus-segment
              - custom
        - $ref: '#/components/parameters/PageSize'
        - $ref: '#/components/parameters/StartingAfter'
        - $ref: '#/components/parameters/EndingBefore'
      responses:
        '200':
          description: Pixel list.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PixelListResponse'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '422':
          $ref: '#/components/responses/UnprocessableEntity'
        '429':
          $ref: '#/components/responses/RateLimited'
        '500':
          $ref: '#/components/responses/InternalError'
components:
  parameters:
    Search:
      name: search
      in: query
      schema:
        type: string
        minLength: 1
        maxLength: 255
    PageSize:
      name: page_size
      in: query
      schema:
        type: integer
        minimum: 1
        maximum: 100
        default: 50
    StartingAfter:
      name: starting_after
      in: query
      description: Next-page public ID cursor; mutually exclusive with ending_before.
      schema:
        type: string
    EndingBefore:
      name: ending_before
      in: query
      description: Previous-page public ID cursor; mutually exclusive with starting_after.
      schema:
        type: string
  schemas:
    PixelListResponse:
      type: object
      required:
        - pixels
        - pagination
        - status
      properties:
        pixels:
          type: array
          items:
            $ref: '#/components/schemas/Pixel'
        pagination:
          $ref: '#/components/schemas/CursorPagination'
        status:
          type: string
          const: success
    Pixel:
      type: object
      additionalProperties: false
      required:
        - id
        - name
        - type
        - pixel_id
        - head_code
        - body_code
        - links_count
      properties:
        id:
          type: string
          pattern: ^biq_pxl_[0-9A-HJKMNP-TV-Z]{26}$
        name:
          type: string
        type:
          type: string
          enum:
            - facebook
            - twitter
            - google-tag-manager
            - google-analytics
            - adwords
            - bing
            - pinterest
            - linkedin
            - quora
            - adroll
            - nexus-segment
            - custom
        pixel_id:
          type:
            - string
            - 'null'
          description: Provider identifier, or null for custom pixels.
        head_code:
          type:
            - string
            - 'null'
          description: Custom head code, or null for provider pixels.
        body_code:
          type:
            - string
            - 'null'
          description: Custom body code, or null for provider pixels.
        links_count:
          type: integer
          minimum: 0
        created_at:
          type:
            - string
            - 'null'
          format: date-time
        updated_at:
          type:
            - string
            - 'null'
          format: date-time
    CursorPagination:
      type: object
      additionalProperties: false
      required:
        - page_size
        - has_more
        - next_cursor
        - previous_cursor
      properties:
        page_size:
          type: integer
          minimum: 1
          maximum: 100
        has_more:
          type: boolean
        next_cursor:
          type:
            - string
            - 'null'
        previous_cursor:
          type:
            - string
            - 'null'
    ApiError:
      type: object
      required:
        - error
        - request_id
      properties:
        error:
          type: object
          required:
            - code
            - message
          properties:
            code:
              type: string
              enum:
                - invalid_token
                - insufficient_scope
                - upgrade_required
                - quota_exceeded
                - resource_not_found
                - domain_taken
                - alias_taken
                - external_id_taken
                - folder_name_taken
                - tag_name_taken
                - pixel_name_taken
                - biolink_name_taken
                - method_not_allowed
                - url_blocked
                - dns_verification_failed
                - validation_error
                - rate_limit_exceeded
                - internal_server_error
            message:
              type: string
            details:
              type: object
              additionalProperties: true
        request_id:
          type: string
          description: Request identifier to include when contacting support.
  responses:
    Unauthorized:
      $ref: '#/components/responses/ApiErrorResponse'
      description: The workspace API key is missing, invalid, or revoked.
    Forbidden:
      $ref: '#/components/responses/ApiErrorResponse'
      description: >-
        The key lacks a required scope, the workspace must upgrade, or its quota
        is exhausted.
    NotFound:
      $ref: '#/components/responses/ApiErrorResponse'
      description: >-
        The requested resource or referenced public ID is unavailable in the
        key's workspace.
    UnprocessableEntity:
      $ref: '#/components/responses/ApiErrorResponse'
      description: >-
        The payload is invalid, a destination was blocked, or domain DNS
        verification is not ready.
    RateLimited:
      description: The workspace exceeded its plan's API rate limit.
      headers:
        RateLimit-Policy:
          description: Current IETF HTTPAPI quota policy as a structured field.
          schema:
            type: string
            example: '"workspace-api";q=1000;w=60'
        RateLimit:
          description: Current IETF HTTPAPI service limit as a structured field.
          schema:
            type: string
            example: '"workspace-api";r=0;t=17'
        Retry-After:
          description: Seconds to wait before retrying the request.
          schema:
            type: integer
            minimum: 0
            example: 17
        X-RateLimit-Limit:
          description: Legacy maximum request count for the current window.
          schema:
            type: integer
            minimum: 1
            example: 1000
        X-RateLimit-Remaining:
          description: Legacy remaining request count.
          schema:
            type: integer
            minimum: 0
            example: 0
        X-RateLimit-Reset:
          description: Legacy reset time as a UTC Unix timestamp.
          schema:
            type: integer
            format: int64
            example: 1788126519
        X-Biq-Request-Id:
          description: Request identifier for support and tracing.
          schema:
            type: string
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    InternalError:
      $ref: '#/components/responses/ApiErrorResponse'
      description: The request failed unexpectedly.
    ApiErrorResponse:
      description: API error.
      headers:
        X-Biq-Request-Id:
          description: Request identifier for support and tracing.
          schema:
            type: string
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Workspace API key
      description: A workspace API key beginning with biqli_.

````