🚀 VaultsPay API v1 is live. See what's new →
Payment CardsRetrieve Card

Retrieve Card

Returns card metadata — but never PAN, CVV, or PIN. Use Reveal Card Details for those.

GET/v1/cards/{id}
curl https://api.vaultspay.ae/v1/cards/card_01HX7... \
  -H "Authorization: Bearer sk_test_yourApiKeyHere"
200 OK
{
  "id": "card_01HX71YM6FJ3A8W7T5K6NRB2DN",
  "object": "card",
  "type": "virtual",
  "status": "active",
  "last4": "4321",
  "expiry_month": 11,
  "expiry_year": 2030,
  "limits": {
    "daily_spend": 500000,
    "monthly_spend": 2000000,
    "per_transaction": 100000
  },
  "controls": {
    "atm_withdrawal": false,
    "online_payments": true,
    "contactless": true,
    "cross_border": true
  },
  "created_at": "2026-04-24T14:52:03Z"
}