Skip to main content
GET
/
management
/
clients
/
{id}
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"
}
Retrieves detailed information about a specific client by their unique identifier. Requires an API key with access level 1 or higher.

Path parameters

id
string
required
Unique identifier of the client.

Response

id
string
Unique client identifier.
company_id
string
Company identifier.
type
string
Client type: individual or business.
status
string
Account status.
phone_country_code
integer
Phone country code.
phone_number
long
Phone number.
first_name
string
Client first name.
second_name
string
Client second/middle name.
last_name
string
Client last name.
gender
string
Client gender.
email
string
Client email address.
birth_date
string
Date of birth.
address
object
Physical address (individual clients).
document_type
string
Document type (e.g., PASSPORT, DRIVERS_LICENSE).
document_number
string
Document identification number.
expiration_date
string
Document expiration date.
individual_identification_type
string
Individual identification type.
individual_identification
string
Individual identification number.
otp
boolean
Whether OTP is enabled.
sms
boolean
Whether SMS is enabled.
whatsapp
boolean
Whether WhatsApp is enabled.
telegram
boolean
Whether Telegram is enabled.
username
string
Client username.
wallet_ids
array
Associated wallet IDs.
created_at
string
Creation timestamp.
updated_at
string
Last update timestamp.
Business legal name (for business clients).
business_trade_name
string
Business trade name (DBA).
business_description
string
Business description.
business_type
string
Business type.
business_industry
array
Business NAICS industry codes.
is_dao
boolean
Whether the business is a DAO.
registered_address
object
Business registered address.
physical_address
object
Business physical address.
identifying_information
array
Business identifying information (tax IDs).
has_material_intermediary_ownership
boolean
Whether there is material intermediary ownership.
ownership_threshold
integer
Ownership threshold percentage.
signed_agreement_id
string
Signed agreement identifier.
account_purpose
string
Account purpose.
source_of_funds
string
Source of funds.
estimated_annual_revenue_usd
string
Estimated annual revenue bucket.
expected_monthly_payments_usd
integer
Expected monthly payments (USD).
operates_in_prohibited_countries
boolean
Whether operating in prohibited countries.
high_risk_activities
array
Declared high-risk activities.
conducts_money_services
boolean
Whether the business conducts money services.
acting_as_intermediary
boolean
Whether the business acts as an intermediary.
primary_website
string
Primary website URL.
other_websites
array
Other website URLs.
rejection_code
string
Rejection reason code if the client was rejected.
rejection_description
string
Rejection description.
documents
array
Identity documents.
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"
}