Skip to main content
GET
/
api
/
v1
/
customers
/
{customerId}
curl -X GET "https://app.monk.com/api/v1/customers/550e8400-e29b-41d4-a716-446655440000" \
  -H "Authorization: Bearer mk_live_your_api_key"
{
  "data": {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "name": "Acme Corp",
    "legalName": "Acme Corporation Inc.",
    "tags": ["enterprise", "priority"],
    "createdAt": "2024-01-01T00:00:00.000Z",
    "updatedAt": "2024-01-15T00:00:00.000Z"
  }
}

Authentication

Authorization
string
required
Bearer token with your API key. Example: Bearer mk_live_...
Required scope: customers:read

Path Parameters

customerId
string
required
The unique identifier of the customer

Response

data
object
The customer object
curl -X GET "https://app.monk.com/api/v1/customers/550e8400-e29b-41d4-a716-446655440000" \
  -H "Authorization: Bearer mk_live_your_api_key"
{
  "data": {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "name": "Acme Corp",
    "legalName": "Acme Corporation Inc.",
    "tags": ["enterprise", "priority"],
    "createdAt": "2024-01-01T00:00:00.000Z",
    "updatedAt": "2024-01-15T00:00:00.000Z"
  }
}