GET
/
wallets
/
{wallet_id}
curl --request GET \
  --url https://api.live.paisr.tech/{version}/wallets/{wallet_id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "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.

Path Parameters

wallet_id
string
required

The Wallet ID.

Response

200
application/json
Successfully retrieved wallet details.
success
boolean
Example:

true

data
object