curl --request POST \
--url https://api.monaco.com/v1/accounts/list \
--header 'Content-Type: application/json' \
--data '
{
"filters": [
{
"field": "name",
"condition": "contains",
"value": "Acme"
}
]
}
'{
"data": [
{
"id": "acc_abc123",
"name": "Acme Corp",
"status": "PROSPECTING",
"owner": {
"id": "usr_abc123",
"first_name": "Jane",
"last_name": "Smith"
},
"notes": "Key enterprise prospect",
"company": {
"domain": "acme.com",
"linkedin_url": "https://linkedin.com/company/acme",
"description": "Enterprise software company specializing in AI-driven sales tools",
"employee_count": 250,
"founded_year": 2019,
"industries": [
"Software",
"Artificial Intelligence"
],
"total_funding_usd": 50000000,
"last_funding_date": "2024-03-15"
},
"scoring": {
"tier": "A",
"heat_score": "Hot"
},
"tags": [
"Enterprise",
"High Priority"
],
"created_at": "2025-06-15T10:30:00Z",
"updated_at": "2025-06-16T10:30:00Z",
"custom_field_7a1c9e2b-3f4d-4a8e-9b1c-2d3e4f5a6b7c": "high",
"custom_field_8b2d1f3c-4e5a-4b9f-ac2d-3e4f5a6b7c8d": "2026-09-30"
}
],
"pagination": {
"page": 1,
"page_size": 50,
"total_count": 142,
"total_pages": 3
},
"meta": {
"timestamp": "2026-04-21T12:00:00Z"
}
}{
"error": {
"code": "not_found",
"message": "Resource not found"
}
}Accounts
List Accounts
Returns a paginated list of accounts.
POST
/
v1
/
accounts
/
list
curl --request POST \
--url https://api.monaco.com/v1/accounts/list \
--header 'Content-Type: application/json' \
--data '
{
"filters": [
{
"field": "name",
"condition": "contains",
"value": "Acme"
}
]
}
'{
"data": [
{
"id": "acc_abc123",
"name": "Acme Corp",
"status": "PROSPECTING",
"owner": {
"id": "usr_abc123",
"first_name": "Jane",
"last_name": "Smith"
},
"notes": "Key enterprise prospect",
"company": {
"domain": "acme.com",
"linkedin_url": "https://linkedin.com/company/acme",
"description": "Enterprise software company specializing in AI-driven sales tools",
"employee_count": 250,
"founded_year": 2019,
"industries": [
"Software",
"Artificial Intelligence"
],
"total_funding_usd": 50000000,
"last_funding_date": "2024-03-15"
},
"scoring": {
"tier": "A",
"heat_score": "Hot"
},
"tags": [
"Enterprise",
"High Priority"
],
"created_at": "2025-06-15T10:30:00Z",
"updated_at": "2025-06-16T10:30:00Z",
"custom_field_7a1c9e2b-3f4d-4a8e-9b1c-2d3e4f5a6b7c": "high",
"custom_field_8b2d1f3c-4e5a-4b9f-ac2d-3e4f5a6b7c8d": "2026-09-30"
}
],
"pagination": {
"page": 1,
"page_size": 50,
"total_count": 142,
"total_pages": 3
},
"meta": {
"timestamp": "2026-04-21T12: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"
Whether to include custom fields (custom_field_<uuid> keys) on each returned account. Defaults to true. Set false to omit them for leaner responses; GET /v1/accounts/{account_id} always returns them.