curl -X GET 'https://crypto-api.yativo.com/api/customers/cust_01HX9KZMB3F7VNQP8R2WDGT4E5' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
"status": "success",
"data": {
"id": "cust_01HX9KZMB3F7VNQP8R2WDGT4E5",
"email": "jane@example.com",
"first_name": "Jane",
"last_name": "Doe",
"phone": "+1234567890",
"status": "active",
"kyc_status": "approved",
"wallets": [
{
"address": "0xAbC123...",
"network": "polygon",
"balance": "250.00"
}
],
"created_at": "2026-03-01T10:00:00Z",
"updated_at": "2026-03-25T09:00:00Z"
}
}
Retrieve a single customer by ID
curl -X GET 'https://crypto-api.yativo.com/api/customers/cust_01HX9KZMB3F7VNQP8R2WDGT4E5' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
"status": "success",
"data": {
"id": "cust_01HX9KZMB3F7VNQP8R2WDGT4E5",
"email": "jane@example.com",
"first_name": "Jane",
"last_name": "Doe",
"phone": "+1234567890",
"status": "active",
"kyc_status": "approved",
"wallets": [
{
"address": "0xAbC123...",
"network": "polygon",
"balance": "250.00"
}
],
"created_at": "2026-03-01T10:00:00Z",
"updated_at": "2026-03-25T09:00:00Z"
}
}
Bearer YOUR_ACCESS_TOKENResponse Type Definitions
interface CustomerDetail {
id: string;
email: string;
first_name: string;
last_name: string;
phone?: string;
status: "active" | "suspended" | "pending";
kyc_status: "not_started" | "pending" | "approved" | "rejected";
wallets?: Array<{ address: string; network: string; balance: string }>;
created_at: string;
updated_at: string;
}
curl -X GET 'https://crypto-api.yativo.com/api/customers/cust_01HX9KZMB3F7VNQP8R2WDGT4E5' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
"status": "success",
"data": {
"id": "cust_01HX9KZMB3F7VNQP8R2WDGT4E5",
"email": "jane@example.com",
"first_name": "Jane",
"last_name": "Doe",
"phone": "+1234567890",
"status": "active",
"kyc_status": "approved",
"wallets": [
{
"address": "0xAbC123...",
"network": "polygon",
"balance": "250.00"
}
],
"created_at": "2026-03-01T10:00:00Z",
"updated_at": "2026-03-25T09:00:00Z"
}
}