ae7fddf16bf9
List signals
Returns a paginated list of signals from monitors accessible by the authenticated user (owned and team-shared). Supports filtering by signal_type, monitor_id, and date range.
Query parameters
Filter by signal type. Accepted values: keyword_mention, new_hire, job_change, post_engagement.
Filter by signal type. Accepted values: keyword_mention, new_hire, job_change, post_engagement.
Filter by a specific monitor ID (must be accessible by the authenticated user).
Filter by a specific monitor ID (must be accessible by the authenticated user).
Filter signals detected on or after this date (format: YYYY-MM-DD).
Filter signals detected on or after this date (format: YYYY-MM-DD).
Filter signals detected on or before this date (format: YYYY-MM-DD).
Filter signals detected on or before this date (format: YYYY-MM-DD).
Comma-separated AI relevance scores to include (0-5). Optionally combine with monitor_id to scope to a single monitor.
Comma-separated AI relevance scores to include (0-5). Optionally combine with monitor_id to scope to a single monitor.
The page number (default: 1).
The page number (default: 1).
Results per page (max: 100, default: 50).
Results per page (max: 100, default: 50).
Response
Ok
Example response
{
"data": [
{
"id": 1,
"type": "keyword_mention",
"category": "contact",
"payload": {
"matched_keyword": "hiring",
"snippet": "We are hiring a new VP of Sales..."
},
"detected_at": "2026-03-01T12:00:00+00:00",
"expires_at": "2026-06-01T12:00:00+00:00",
"contact": {
"id": 1,
"name": "John Doe",
"job_title": "CEO",
"linkedin_url": "https://www.linkedin.com/in/johndoe"
},
"company": {
"id": 1,
"name": "Acme Corp",
"domain": "acme.com",
"industry": "Technology, Information and Internet",
"employee_count_range": "51-200",
"country": "US"
},
"monitors": [
{
"id": 1,
"name": "Hiring monitor",
"keywords": [
"hiring"
],
"enrichment_level": "email",
"relevance_score": 4,
"relevance_reasoning": "Post discusses active hiring for sales roles"
}
]
}
],
"meta": {
"current_page": 1,
"per_page": 50,
"total": 1,
"last_page": 1,
"from": 1,
"to": 1
}
}