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

> Get a monitor check with optional page-level results.

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

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

result = await firecrawl.monitor_check_get.ainvoke({"monitorId": ..., "checkId": ...})
```

## Path parameters

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

## Query parameters

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