GET
/
card
/
wallet
Wallet Card List
curl --request GET \
  --url https://nini.monieswitch.com/card/wallet \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "status": true,
  "message": "Operation is successful",
  "data": {
    "size": 50,
    "page": 1,
    "totalRecords": 1,
    "totalPages": 1,
    "cards": [
      {
        "id": "b817bf01-a671-40bb-a27c-73160692f0e8",
        "status": "ACTIVE",
        "type": "PHYSICAL",
        "cardholder": "Tomato",
        "expirationDate": "3007",
        "createdAt": "2025-07-09T18:07:15.854Z",
        "merchant": {
          "id": "3aed8fe9-2c60-48fe-bea4-71ea8c8f3c84",
          "businessName": "Kimpembe"
        }
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page
integer
size
integer
status
string

PENDING, ACCEPTED, DECLINED

type
string

PHYSICAL, VIRTUAL

startDate
integer
endDate
integer
walletId
string

Body

application/json · object

Response

200 - application/json

Wallet Card List - Successful

The response is of type object.