Skip to main content
GET
/
admin
/
customers
/
{customer_id}
Get Customer
curl --request GET \
  --url https://api.example.com/admin/customers/{customer_id}
{
  "customer_id": "550e8400-e29b-41d4-a716-446655440000",
  "company_name": "Acme Financial",
  "contact_email": "compliance@acmefinancial.com",
  "tier": "growth",
  "status": "active",
  "api_key_id": "abc***xyz",
  "annual_commitment": 250000,
  "annual_validation_limit": 10000000,
  "contract_start": "2026-01-01",
  "contract_end": "2026-12-31",
  "created_at": "2026-01-19T10:30:00Z",
  "updated_at": "2026-01-19T10:30:00Z"
}
Retrieve detailed information about a specific customer.

Path Parameters

customer_id
string
required
Customer UUID

Response

customer_id
string
Unique customer identifier
company_name
string
Company name
contact_email
string
Contact email
tier
string
Pricing tier
status
string
Account status: active, suspended, cancelled
api_key_id
string
API key identifier (masked)
annual_commitment
number
Annual commitment in USD
annual_validation_limit
number
Annual validation limit
contract_start
string
Contract start date
contract_end
string
Contract end date
created_at
string
Creation timestamp
updated_at
string
Last update timestamp
{
  "customer_id": "550e8400-e29b-41d4-a716-446655440000",
  "company_name": "Acme Financial",
  "contact_email": "compliance@acmefinancial.com",
  "tier": "growth",
  "status": "active",
  "api_key_id": "abc***xyz",
  "annual_commitment": 250000,
  "annual_validation_limit": 10000000,
  "contract_start": "2026-01-01",
  "contract_end": "2026-12-31",
  "created_at": "2026-01-19T10:30:00Z",
  "updated_at": "2026-01-19T10:30:00Z"
}

Example

curl -X GET "https://{admin-api-url}/admin/customers/550e8400-e29b-41d4-a716-446655440000" \
  -H "x-api-key: ADMIN_API_KEY"