Get Card Details
Sensitive fields like card number and CVV are returned securely for one-time use. Never cache or store these details on the client.
--header 'Accept: application/json'
--header 'Authorization: Bearer {{ access_token }}'Name
Type
Description
{
"success": true,
"message": "Card details successfully fetched.",
"status_code": 200,
"data": {
"type": "virtual",
"brand": "visa",
"number": "1234 56•• •••• 7890",
"expiryMonth": "12",
"expiryYear": "2028",
"cvv": "•••",
"status": "active",
"balance": 42.55,
"billingAddress": {
"line1": "123 Main Street",
"city": "Lagos",
"state": "LA",
"postalCode": "100001",
"country": "NG"
}
}
}
Last updated