Skip to main content
POST
/
api
/
yativo-card
/
deploy-safe
curl -X POST 'https://crypto-api.yativo.com/api/yativo-card/deploy-safe' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
  -H 'Content-Type: application/json'
{
  "status": "success",
  "message": "Card wallet initialized successfully",
  "data": {
    "yativo_card_id": "yvc_01HX9KZMB3F7VNQP8R2WDGT4EI",
    "wallet_status": "active",
    "wallet_address": "0x3f4e5d6c7b8a9f0e1d2c3b4a5f6e7d8c9b0a1f2e",
    "initialized_at": "2026-03-26T12:00:00Z"
  }
}
Authorization
string
required
Bearer token: Bearer YOUR_ACCESS_TOKEN
The card wallet must be initialized before you can fund it or create cards. This is a one-time setup step that activates the on-chain wallet infrastructure for the card account.
curl -X POST 'https://crypto-api.yativo.com/api/yativo-card/deploy-safe' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
  -H 'Content-Type: application/json'
{
  "status": "success",
  "message": "Card wallet initialized successfully",
  "data": {
    "yativo_card_id": "yvc_01HX9KZMB3F7VNQP8R2WDGT4EI",
    "wallet_status": "active",
    "wallet_address": "0x3f4e5d6c7b8a9f0e1d2c3b4a5f6e7d8c9b0a1f2e",
    "initialized_at": "2026-03-26T12:00:00Z"
  }
}