🚀 Card Payment is live! Learn more
curl --request GET \
--url https://nini.monieswitch.com/card/details \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{}'
{
"status": true,
"message": "Operation is successful",
"data": {
"id": "b817bf01-a671-40bb-a27c-73160692f0e8",
"type": "PHYSICAL",
"status": "ACTIVE",
"pan": "278167xxxxxx3832",
"cvv": "212",
"scheme": "VERVE",
"cardholder": "Tomato",
"defaultPIN": "1375",
"expirationDate": "3007",
"reason": null,
"createdAt": "2025-07-09T18:07:15.854Z",
"updatedAt": "2025-07-09T19:42:36.849Z",
"merchant": {
"id": "3aed8fe9-2c60-48fe-bea4-71ea8c8f3c84",
"businessName": "Kimpembe"
},
"wallet": {
"id": "825d62fd-534d-460e-891a-94ac678b0b55",
"tier": 1,
"email": "[email protected]",
"status": "ACTIVE",
"bankCode": "999270",
"bankName": "Xpress Wallet",
"accountName": "Tomato",
"phoneNumber": "2348106813750",
"bookedBalance": 0,
"availableBalance": 0,
"accountNumber": "4458734207",
"createdAt": "2025-06-24T08:24:30.191Z"
}
}
}
curl --request GET \
--url https://nini.monieswitch.com/card/details \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{}'
{
"status": true,
"message": "Operation is successful",
"data": {
"id": "b817bf01-a671-40bb-a27c-73160692f0e8",
"type": "PHYSICAL",
"status": "ACTIVE",
"pan": "278167xxxxxx3832",
"cvv": "212",
"scheme": "VERVE",
"cardholder": "Tomato",
"defaultPIN": "1375",
"expirationDate": "3007",
"reason": null,
"createdAt": "2025-07-09T18:07:15.854Z",
"updatedAt": "2025-07-09T19:42:36.849Z",
"merchant": {
"id": "3aed8fe9-2c60-48fe-bea4-71ea8c8f3c84",
"businessName": "Kimpembe"
},
"wallet": {
"id": "825d62fd-534d-460e-891a-94ac678b0b55",
"tier": 1,
"email": "[email protected]",
"status": "ACTIVE",
"bankCode": "999270",
"bankName": "Xpress Wallet",
"accountName": "Tomato",
"phoneNumber": "2348106813750",
"bookedBalance": 0,
"availableBalance": 0,
"accountNumber": "4458734207",
"createdAt": "2025-06-24T08:24:30.191Z"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Card Details - Successful
The response is of type object
.