latestOpenAPI 3.0.32026-08-08360156.4 KB
ae7fddf16bf9
Signals
Create a monitor
Creates a new signal monitor for the authenticated user.
post/api/signals/monitors
Request body
Example request
{
"name": "Hiring monitor",
"signal_type": "keyword_mention",
"keywords": [
"hiring",
"fundraise"
],
"webhook_url": "https://example.com/webhooks/signals",
"enrichment_level": "email",
"lead_list_id": 42,
"ai_relevance_prompt": "Focus on Series B+ SaaS companies hiring VP Sales.",
"icp_filters": {
"industries": [
"Biotechnology"
],
"employee_count_ranges": [
"51-200"
],
"countries": [
"US",
"FR"
],
"job_title_keywords": [
"VP Sales",
"CTO"
],
"seniority_levels": [
11,
13
]
}
}Response
Created
Example response
{
"id": 1,
"name": "Hiring monitor",
"signal_type": "keyword_mention",
"signal_type_label": "Keyword Mention",
"signal_level": "contact",
"status": "active",
"keywords": [
"hiring",
"fundraise"
],
"icp_filters": null,
"webhook_url": null,
"webhook_paused_at": null,
"post_url": null,
"profile_url": null,
"engagement_types": null,
"enrichment_level": null,
"lead_list_id": null,
"ai_relevance_prompt": null,
"target_companies": null,
"match_count": 0,
"is_shared": false,
"is_owner": true,
"is_team_owner": false,
"user_id": 42,
"owner_name": "Jane Doe",
"created_at": "2026-02-01T10:00:00.000000Z"
}