GET
/
wallets
curl --request GET \
  --url https://api.live.paisr.tech/{version}/wallets \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "wallets": [
      {
        "id": "buw_123456",
        "beneficiary": {
          "name": "Acme Inc",
          "email": "finance@acme.com"
        },
        "profile": {
          "nickname": "Acme",
          "tag": "acmeinc",
          "public": true
        },
        "icon": "vault",
        "title": "Cash Wallet",
        "locked": false,
        "default": true,
        "type": "fiat",
        "sub_type": "business",
        "usage": {
          "transfers": {
            "current": 3598.75,
            "max": 25000
          },
          "deposits": {
            "current": 550,
            "max": 5000
          },
          "withdrawals": {
            "current": 4075,
            "max": 25000
          },
          "resets_at": "2023-11-07T05:31:56Z"
        },
        "created_at": "2023-11-07T05:31:56Z"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Response

200
application/json
Successfully retrieved the list of walllets.
success
boolean
Example:

true

data
object