Skip to main content
POST
/
v1
/
accounts
/
list
List Accounts
curl --request POST \
  --url https://api.example.com/v1/accounts/list \
  --header 'Content-Type: application/json' \
  --data '
{
  "filters": [
    {
      "condition": "contains",
      "field": "name",
      "value": "Acme"
    },
    {
      "condition": "is",
      "field": "status",
      "value": "active"
    }
  ],
  "page": 1,
  "page_size": 50,
  "sort": "-created_at"
}
'
{
  "data": [
    {
      "id": "acc_abc123",
      "name": "Acme Corp",
      "status": "active",
      "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",
      "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"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.monaco.com/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json
filters
FilterRule · object
page
integer
default:1

Page number (1-indexed)

Required range: x >= 1
Example:

1

page_size
integer
default:50

Number of results per page

Required range: 1 <= x <= 500
Example:

25

sort
string
default:-created_at

Field to sort by. Prefix with '-' for descending order.

Example:

"-created_at"

Response

Successful Response

data
AccountResponse · object[]
required
pagination
PaginationInfo · object
required
meta
ResponseMeta · object