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

# List Monitors

> List all your monitors

Returns every monitor on your API key, each with what it watches.

## Response

<ResponseField name="id" type="number">Monitor ID</ResponseField>
<ResponseField name="signal" type="string">The subscribed signal</ResponseField>
<ResponseField name="watch" type="array">What's being watched (the values you gave)</ResponseField>
<ResponseField name="url" type="string">Delivery URL</ResponseField>
<ResponseField name="active" type="boolean">Whether the monitor is active</ResponseField>
<ResponseField name="created_at" type="string">ISO 8601 timestamp</ResponseField>
<ResponseField name="filters" type="object | null">Active filters</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.dataforb2b.ai/monitors \
    -H "api_key: YOUR_api_key"
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  [
    {
      "id": 42,
      "signal": "post_engagement",
      "watch": ["https://www.linkedin.com/in/jane-doe/"],
      "url": "https://your-server.com/webhook",
      "active": true,
      "created_at": "2026-06-12T10:00:00.000000",
      "filters": null
    }
  ]
  ```
</ResponseExample>
