curl -X POST 'https://crypto-api.yativo.com/api/v1/yativo-card/yativo_card_0xAbCd1234EfGh5678IjKl9012_1769031332068/cards/physical/order' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"account_id": "acc_01HX9KZMB3F7VNQP8R2WDGT4E5",
"card_type": "physical",
"card_program": "MASTERCARD",
"currency": "USD",
"label": "Operations Card",
"shipping_name": "Jane Doe",
"shipping_address": {
"line1": "123 Main Street",
"city": "New York",
"country": "US",
"postal_code": "10001"
}
}'
{
"status": "success",
"message": "Physical card created successfully",
"data": {
"card_id": "crd_01HX9KZMB3F7VNQP8R2WDGT4FK",
"card_type": "physical",
"card_program": "MASTERCARD",
"currency": "USD",
"label": "Operations Card",
"status": "pending",
"masked_pan": "5200 **** **** 3456",
"expiry_month": "03",
"expiry_year": "2029",
"shipping_tracking_number": null,
"created_at": "2026-03-26T12:00:00Z"
}
}
Yativo Card (Own Account)
Create Physical Card
Issue a new physical card that will be shipped to the provided address
POST
/
v1
/
yativo-card
/
{id}
/
cards
/
physical
/
order
curl -X POST 'https://crypto-api.yativo.com/api/v1/yativo-card/yativo_card_0xAbCd1234EfGh5678IjKl9012_1769031332068/cards/physical/order' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"account_id": "acc_01HX9KZMB3F7VNQP8R2WDGT4E5",
"card_type": "physical",
"card_program": "MASTERCARD",
"currency": "USD",
"label": "Operations Card",
"shipping_name": "Jane Doe",
"shipping_address": {
"line1": "123 Main Street",
"city": "New York",
"country": "US",
"postal_code": "10001"
}
}'
{
"status": "success",
"message": "Physical card created successfully",
"data": {
"card_id": "crd_01HX9KZMB3F7VNQP8R2WDGT4FK",
"card_type": "physical",
"card_program": "MASTERCARD",
"currency": "USD",
"label": "Operations Card",
"status": "pending",
"masked_pan": "5200 **** **** 3456",
"expiry_month": "03",
"expiry_year": "2029",
"shipping_tracking_number": null,
"created_at": "2026-03-26T12:00:00Z"
}
}
Physical card activation requires a 12.00 USDC one-time activation fee (paid on Solana). The fee is charged at activation time, not at order time. Fees are subject to review.
string
required
Bearer token:
Bearer YOUR_ACCESS_TOKENstring
required
The ID of the account to associate the card with.
string
required
Must be
physical for a physical card.string
The card network to use. One of:
VISA, MASTERCARD.string
The billing currency for the card. Defaults to
USD.string
An optional human-readable nickname for the card, e.g.
"Operations Card".string
required
The full name of the recipient to print on the shipping label.
object
required
curl -X POST 'https://crypto-api.yativo.com/api/v1/yativo-card/yativo_card_0xAbCd1234EfGh5678IjKl9012_1769031332068/cards/physical/order' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"account_id": "acc_01HX9KZMB3F7VNQP8R2WDGT4E5",
"card_type": "physical",
"card_program": "MASTERCARD",
"currency": "USD",
"label": "Operations Card",
"shipping_name": "Jane Doe",
"shipping_address": {
"line1": "123 Main Street",
"city": "New York",
"country": "US",
"postal_code": "10001"
}
}'
{
"status": "success",
"message": "Physical card created successfully",
"data": {
"card_id": "crd_01HX9KZMB3F7VNQP8R2WDGT4FK",
"card_type": "physical",
"card_program": "MASTERCARD",
"currency": "USD",
"label": "Operations Card",
"status": "pending",
"masked_pan": "5200 **** **** 3456",
"expiry_month": "03",
"expiry_year": "2029",
"shipping_tracking_number": null,
"created_at": "2026-03-26T12:00:00Z"
}
}

