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

# get_pixel_status

> Per-domain pixel + CAPI + form-tracking installation health.

Returns each connected domain's tracking status. Pair with [`inspect_site`](/mcp/tools/inspect-site) for in-the-moment crawl-based verification.

## Parameters

| Parameter | Type   | Required | Description                         |
| --------- | ------ | -------- | ----------------------------------- |
| `format`  | string | No       | `json` (default), `csv`, or `yaml`. |

## Output

```json theme={null}
{
  "domains": [
    {
      "domain":         "acme.com",
      "status":         "verified",
      "pixel_verified": true,
      "capi_status":    "active",
      "form_tracking":  "active"
    },
    {
      "domain":         "shop.acme.com",
      "status":         "pending",
      "pixel_verified": false,
      "capi_status":    null,
      "form_tracking":  null
    }
  ]
}
```
