curl -X POST 'https://crypto-api.yativo.com/api/yativo-card/create' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"account_id": "acc_01HX9KZMB3F7VNQP8R2WDGT4E5",
"card_type": "virtual",
"card_program": "VISA",
"currency": "USD",
"label": "Marketing Spend"
}'
{
"status": "success",
"message": "Virtual card created successfully",
"data": {
"card_id": "crd_01HX9KZMB3F7VNQP8R2WDGT4EJ",
"card_type": "virtual",
"card_program": "VISA",
"currency": "USD",
"label": "Marketing Spend",
"status": "pending",
"masked_pan": "4111 **** **** 7890",
"expiry_month": "03",
"expiry_year": "2029",
"created_at": "2026-03-26T12:00:00Z"
}
}
Issue a new virtual card linked to an account
curl -X POST 'https://crypto-api.yativo.com/api/yativo-card/create' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"account_id": "acc_01HX9KZMB3F7VNQP8R2WDGT4E5",
"card_type": "virtual",
"card_program": "VISA",
"currency": "USD",
"label": "Marketing Spend"
}'
{
"status": "success",
"message": "Virtual card created successfully",
"data": {
"card_id": "crd_01HX9KZMB3F7VNQP8R2WDGT4EJ",
"card_type": "virtual",
"card_program": "VISA",
"currency": "USD",
"label": "Marketing Spend",
"status": "pending",
"masked_pan": "4111 **** **** 7890",
"expiry_month": "03",
"expiry_year": "2029",
"created_at": "2026-03-26T12:00:00Z"
}
}
Bearer YOUR_ACCESS_TOKENvirtual for a virtual card.VISA, MASTERCARD.USD."Marketing Spend".curl -X POST 'https://crypto-api.yativo.com/api/yativo-card/create' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"account_id": "acc_01HX9KZMB3F7VNQP8R2WDGT4E5",
"card_type": "virtual",
"card_program": "VISA",
"currency": "USD",
"label": "Marketing Spend"
}'
{
"status": "success",
"message": "Virtual card created successfully",
"data": {
"card_id": "crd_01HX9KZMB3F7VNQP8R2WDGT4EJ",
"card_type": "virtual",
"card_program": "VISA",
"currency": "USD",
"label": "Marketing Spend",
"status": "pending",
"masked_pan": "4111 **** **** 7890",
"expiry_month": "03",
"expiry_year": "2029",
"created_at": "2026-03-26T12:00:00Z"
}
}