Skip to main content
GET
/
v1
/
accounts
/
{account_id}
Get an Account
curl --request GET \
  --url https://api.example.com/v1/accounts/{account_id}
{
  "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",
    "custom_field_9c3e2a4d-5f6b-4cad-bd3e-4f5a6b7c8d9e": 125000
  },
  "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.

Path Parameters

account_id
string<uuid>
required

Response

Successful Response

data
AccountResponse · object
required

Account resource. Custom fields appear as additional keys prefixed with custom_field_.

meta
ResponseMeta · object