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

# monitor_checks_list

> List checks for a monitor.

<div className="tool-route"><span className="tool-row-method" data-method="GET">GET</span><code>{"https://api.firecrawl.dev/v2/monitor/{monitorId}/checks"}</code></div>

```python firecrawl_monitor_checks_list.py theme={null}
from charter.packs import firecrawl

result = await firecrawl.monitor_checks_list.ainvoke({"monitorId": ...})
```

## Path parameters

<div className="reference-table">
  | Field                                                             | Type     | Description    |
  | ----------------------------------------------------------------- | -------- | -------------- |
  | `monitorId` <span className="required" title="required">\*</span> | `string` | The monitor ID |
</div>

## Query parameters

<div className="reference-table">
  | Field    | Type                                                                              | Description                                                                                                                |
  | -------- | --------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- |
  | `limit`  | `integer`                                                                         | Maximum checks to return. The server applies 25 when this is absent. <span className="field-constraints">≥ 1; ≤ 100</span> |
  | `offset` | `integer`                                                                         | Number of checks to skip. The server applies 0 when this is absent. <span className="field-constraints">≥ 0</span>         |
  | `status` | [MonitorCheckStatus](/charter/charter/packs/firecrawl/monitor/objects#monitorcheckstatus) | Filter checks by status.                                                                                                   |
</div>
