curl --request POST \
--url https://api.monaco.com/v1/sequences/list \
--header 'Content-Type: application/json' \
--data '
{
"filters": [
{
"field": "status",
"condition": "is",
"value": "started"
}
]
}
'{
"data": [
{
"id": "seq_abc123",
"contact_id": "con_def456",
"name": "Enterprise Onboarding",
"description": "Multi-touch onboarding sequence for enterprise accounts",
"status": "started",
"template_id": "seqt_789ghi",
"created_at": "2026-01-15T10:30:00Z",
"updated_at": "2026-05-10T14:22:00Z",
"last_interaction": "Email today",
"enqueued_at": "2026-01-16T09:00:00Z",
"started_at": "2026-01-16T09:05:00Z",
"responded_at": "2026-01-20T11:30:00Z",
"meeting_booked_at": "2026-01-22T15:00:00Z",
"sender_id": "usr_jkl012",
"sender_name": "Alex Rivera"
},
{
"id": "seq_xyz789",
"contact_id": "con_uvw012",
"name": "Enterprise Onboarding",
"description": "Multi-touch onboarding sequence for enterprise accounts",
"status": "Excluded",
"template_id": "seqt_789ghi",
"created_at": "2026-01-15T10:30:00Z",
"updated_at": "2026-05-10T14:22:00Z",
"sender_id": "usr_jkl012",
"sender_name": "Alex Rivera",
"exclusion_info": {
"rule_name": "account_cooldown",
"description": "Account was contacted within the cooldown window",
"overridability": "HARD"
}
}
],
"pagination": {
"page": 1,
"page_size": 50,
"total_count": 142,
"total_pages": 3
},
"meta": {
"timestamp": "2026-05-11T17:00:00Z"
}
}{
"error": {
"code": "not_found",
"message": "Resource not found"
}
}Sequences
List Sequences
Returns a paginated list of sequences.
POST
/
v1
/
sequences
/
list
curl --request POST \
--url https://api.monaco.com/v1/sequences/list \
--header 'Content-Type: application/json' \
--data '
{
"filters": [
{
"field": "status",
"condition": "is",
"value": "started"
}
]
}
'{
"data": [
{
"id": "seq_abc123",
"contact_id": "con_def456",
"name": "Enterprise Onboarding",
"description": "Multi-touch onboarding sequence for enterprise accounts",
"status": "started",
"template_id": "seqt_789ghi",
"created_at": "2026-01-15T10:30:00Z",
"updated_at": "2026-05-10T14:22:00Z",
"last_interaction": "Email today",
"enqueued_at": "2026-01-16T09:00:00Z",
"started_at": "2026-01-16T09:05:00Z",
"responded_at": "2026-01-20T11:30:00Z",
"meeting_booked_at": "2026-01-22T15:00:00Z",
"sender_id": "usr_jkl012",
"sender_name": "Alex Rivera"
},
{
"id": "seq_xyz789",
"contact_id": "con_uvw012",
"name": "Enterprise Onboarding",
"description": "Multi-touch onboarding sequence for enterprise accounts",
"status": "Excluded",
"template_id": "seqt_789ghi",
"created_at": "2026-01-15T10:30:00Z",
"updated_at": "2026-05-10T14:22:00Z",
"sender_id": "usr_jkl012",
"sender_name": "Alex Rivera",
"exclusion_info": {
"rule_name": "account_cooldown",
"description": "Account was contacted within the cooldown window",
"overridability": "HARD"
}
}
],
"pagination": {
"page": 1,
"page_size": 50,
"total_count": 142,
"total_pages": 3
},
"meta": {
"timestamp": "2026-05-11T17:00:00Z"
}
}{
"error": {
"code": "not_found",
"message": "Resource not found"
}
}Body
application/json
- FilterRule · object[]
- FilterExpression · object
Show child attributes
Show child attributes
Page number (1-indexed)
Required range:
x >= 1Example:
1
Number of results per page
Required range:
1 <= x <= 500Example:
25
Field to sort by. Prefix with '-' for descending order.
Example:
"-created_at"