Creates a new individual client for the company with personal information, contact preferences, and optional identity documents. Requires an API key with access level 3 or higher.
Body
Client middle or second name.
Enable OTP authentication.
Enable SMS notifications.
Enable WhatsApp notifications.
Enable Telegram notifications.
Date of birth (yyyy-mm-dd).
Document expiration date (yyyy-mm-dd).
Physical address object with street_line_1, street_line_2, city, postal_code, state, country.
individual_identification
Individual identification number (e.g., SSN, Tax ID).
individual_identification_type
Individual identification type (e.g., SSN).
Enable bank ramp functionality.
Enable credit card ramp functionality.
Enable individual cards (Rain) functionality.
Client occupation (required for Rain).
Client annual salary (required for Rain).
Account purpose (required for Rain).
Expected monthly volume (required for Rain).
List of identity documents with fields id, name, description, issuing_country, number, image_front, image_back.
Response
Unique client identifier.
Client type: individual or business.
curl -X POST "https://api.cryptomate.me/management/clients" \
-H "X-API-KEY: $CRYPTOMATE_API_KEY " \
-H "Content-Type: application/json" \
-d '{
"phone_country_code": 1,
"phone_number": 4155551234,
"username": "johndoe123",
"first_name": "John",
"last_name": "Doe",
"email": "john.doe@example.com",
"birth_date": "1990-05-15",
"otp": true,
"sms": true,
"address": {
"street_line_1": "123 Main Street",
"city": "San Francisco",
"postal_code": "94102",
"state": "CA",
"country": "US"
},
"individual_identification": "123-45-6789",
"individual_identification_type": "SSN"
}'
200 OK
412 Duplicate Client
412 Address Invalid
412 Screening Failed
412 Screening Review
412 Bridge Error
{
"id" : "client_a1b2c3d4-e5f6-4a7b-8c9d-0e1f2a3b4c5d" ,
"company_id" : "comp_6f1e2a30-4a3c-4b2e-9a1d-5e8c9b7a1f23" ,
"type" : "individual" ,
"status" : "PENDING" ,
"first_name" : "John" ,
"last_name" : "Doe" ,
"email" : "john.doe@example.com" ,
"phone_country_code" : 1 ,
"phone_number" : 4155551234 ,
"created_at" : "2026-04-15T10:30:00" ,
"updated_at" : "2026-04-15T10:30:00"
}