Skip to main content
GET
/
monitors
curl https://api.dataforb2b.ai/monitors \
  -H "api_key: YOUR_api_key"
[
  {
    "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
  }
]
Returns every monitor on your API key, each with what it watches.

Response

id
number
Monitor ID
signal
string
The subscribed signal
watch
array
What’s being watched (the values you gave)
url
string
Delivery URL
active
boolean
Whether the monitor is active
created_at
string
ISO 8601 timestamp
filters
object | null
Active filters
curl https://api.dataforb2b.ai/monitors \
  -H "api_key: YOUR_api_key"
[
  {
    "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
  }
]