Retrieves detailed information about a specific client by their unique identifier. Requires an API key with access level 1 or higher.
Path parameters
Unique identifier of the client.
Response
Unique client identifier.
Client type: individual or business.
Client second/middle name.
Physical address (individual clients).
Document type (e.g., PASSPORT, DRIVERS_LICENSE).
Document identification number.
Document expiration date.
individual_identification_type
Individual identification type.
individual_identification
Individual identification number.
Whether WhatsApp is enabled.
Whether Telegram is enabled.
Business legal name (for business clients).
Business trade name (DBA).
Business NAICS industry codes.
Whether the business is a DAO.
Business registered address.
Business physical address.
Business identifying information (tax IDs).
has_material_intermediary_ownership
Whether there is material intermediary ownership.
Ownership threshold percentage.
Signed agreement identifier.
estimated_annual_revenue_usd
Estimated annual revenue bucket.
expected_monthly_payments_usd
Expected monthly payments (USD).
operates_in_prohibited_countries
Whether operating in prohibited countries.
Declared high-risk activities.
Whether the business conducts money services.
Whether the business acts as an intermediary.
Rejection reason code if the client was rejected.
curl -X GET "https://api.cryptomate.me/management/clients/client_a1b2c3d4-e5f6-4a7b-8c9d-0e1f2a3b4c5d" \
-H "X-API-KEY: $CRYPTOMATE_API_KEY"
{
"id": "client_a1b2c3d4-e5f6-4a7b-8c9d-0e1f2a3b4c5d",
"company_id": "comp_6f1e2a30-4a3c-4b2e-9a1d-5e8c9b7a1f23",
"type": "individual",
"status": "ACTIVE",
"first_name": "John",
"last_name": "Doe",
"email": "john.doe@example.com",
"phone_country_code": 1,
"phone_number": 4155551234,
"username": "johndoe123",
"otp": true,
"sms": true,
"whatsapp": false,
"telegram": false,
"created_at": "2026-04-15T10:30:00",
"updated_at": "2026-04-15T10:30:00"
}