Get Card

Retrieve metadata for a specific card by its ID. Does not expose the PAN or CVV.

Request

curl --request GET \
  --url "$baseUrl/organization/cards/{id}" \
  --header 'x-api-key: YOUR_API_KEY'

Response

{
  "success": true,
  "statusCode": 200,
  "message": "Card metadata retrieved",
  "data": {
    "id": "card_01hw3x7k2r4p5q6m8n9v",
    "last4": "4242",
    "status": "active",
    "nadapayCode": "NP-0001"
  }
}

Use this endpoint for anything customer-facing or displayed on a dashboard — it's safe to log and render directly.


Did this page help you?