curl -X POST 'https://crypto-api.yativo.com/api/yativo-card/onboard' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"email": "user@example.com",
"first_name": "Jane",
"last_name": "Doe"
}'
{
"status": "success",
"message": "User onboarded successfully",
"data": {
"yativo_card_id": "yvc_01HX9KZMB3F7VNQP8R2WDGT4EI",
"email": "user@example.com",
"first_name": "Jane",
"last_name": "Doe",
"kyc_status": "pending",
"created_at": "2026-03-26T12:00:00Z"
}
}
Register a user for the Yativo Card program
curl -X POST 'https://crypto-api.yativo.com/api/yativo-card/onboard' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"email": "user@example.com",
"first_name": "Jane",
"last_name": "Doe"
}'
{
"status": "success",
"message": "User onboarded successfully",
"data": {
"yativo_card_id": "yvc_01HX9KZMB3F7VNQP8R2WDGT4EI",
"email": "user@example.com",
"first_name": "Jane",
"last_name": "Doe",
"kyc_status": "pending",
"created_at": "2026-03-26T12:00:00Z"
}
}
Bearer YOUR_ACCESS_TOKENcurl -X POST 'https://crypto-api.yativo.com/api/yativo-card/onboard' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"email": "user@example.com",
"first_name": "Jane",
"last_name": "Doe"
}'
{
"status": "success",
"message": "User onboarded successfully",
"data": {
"yativo_card_id": "yvc_01HX9KZMB3F7VNQP8R2WDGT4EI",
"email": "user@example.com",
"first_name": "Jane",
"last_name": "Doe",
"kyc_status": "pending",
"created_at": "2026-03-26T12:00:00Z"
}
}