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

# List Pixels

> List tracking pixels in the current workspace

## Query Parameters

<ParamField query="page" type="number" default="1">
  Page index (minimum `1`)
</ParamField>

<ParamField query="limit" type="number" default="50">
  Page size (maximum `100`)
</ParamField>

<ParamField query="campaignId" type="string">
  Optional campaign filter
</ParamField>

## Access

* Permission: `pixels:read`
* Workspace-scoped access only

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET "https://api.linquid.io/api/pixels?page=1&limit=25&campaignId=campaign_123" \
    -H "Authorization: Bearer <token>"
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "success": true,
    "data": [
      {
        "id": "pixel_abc123",
        "campaignId": "campaign_123",
        "name": "Checkout Pixel",
        "pixelCode": "checkout_pixel",
        "conversionTracking": true,
        "enabled": true,
        "createdAt": "2026-02-20T10:30:00.000Z"
      }
    ],
    "meta": {
      "page": 1,
      "limit": 25
    }
  }
  ```
</ResponseExample>
