Skip to content

List Signals

GET
/api/signals
curl --request GET \
--url 'http://localhost:8000/api/signals?limit=50&offset=0' \
--header 'Authorization: Bearer <token>'

Get recent signals for THIS workspace, optionally filtered by type or lead.

signal_type
Any of:
string
lead_id
Any of:
integer
limit
Limit
integer
default: 50
offset
Offset
integer
0
x-workspace-id
Any of:
string

Successful Response

Media typeapplication/json
Examplegenerated
example

Validation Error

Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
ctx
Context
object
input
Input
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{
"detail": [
{
"ctx": {},
"input": "example",
"loc": [
"example"
],
"msg": "example",
"type": "example"
}
]
}