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

# Site Monitoring

> Sitemap tracking and page discovery via Radar.

Radar monitors your sitemaps and discovers pages for SEO tracking.

## platform\_get\_radar\_sitemaps

List tracked sitemaps with domain, sync status, and page count.

### Parameters

None.

### Response

```json theme={null}
{
  "sitemaps": [
    {
      "_id": "sm_abc123",
      "url": "https://example.com/sitemap.xml",
      "domain": "example.com",
      "status": "synced",
      "pageCount": 342
    }
  ],
  "count": 1
}
```

### Usage

<Tabs>
  <Tab title="MCP">
    Call `platform_get_radar_sitemaps` with no parameters.
  </Tab>

  <Tab title="API">
    ```bash theme={null}
    curl https://api.clickflow.com/v1/api/radar/sitemaps \
      -H "Authorization: Bearer cf_ak_your_key_here"
    ```
  </Tab>
</Tabs>

***

## platform\_get\_radar\_pages

Get discovered pages from tracked sitemaps with URL, title, keyword data, and tracking status.

### Parameters

| Name              | Type      | Required | Default | Description                                                                                   |
| ----------------- | --------- | -------- | ------- | --------------------------------------------------------------------------------------------- |
| `sitemap_url_ids` | string\[] | No       | `[]`    | Filter by sitemap IDs (from `get_radar_sitemaps`). **MCP only** — not available via REST API. |
| `limit`           | integer   | No       | `200`   | Maximum pages to return                                                                       |

### Response

```json theme={null}
{
  "pages": [
    {
      "url": "https://example.com/blog/seo-guide",
      "title": "Complete SEO Guide",
      "keyword": "seo guide",
      "tracked": true
    }
  ],
  "count": 50,
  "total": 342
}
```

### Usage

<Tabs>
  <Tab title="MCP">
    ```json theme={null}
    { "sitemap_url_ids": ["sm_abc123"], "limit": 50 }
    ```
  </Tab>

  <Tab title="API">
    ```bash theme={null}
    curl "https://api.clickflow.com/v1/api/radar/pages?limit=50" \
      -H "Authorization: Bearer cf_ak_your_key_here"
    ```
  </Tab>
</Tabs>

<Note>May return `{"error": "Too many pages. Try filtering by sitemap or reducing the limit."}` for large sites.</Note>
