Wallets
Get Wallet
Getting Started
- Overview
- Authentication
- Concepts
- Error Codes
- Real-time Events
- Changelog
Core Profile
- Profile
- Members
- Owners
- Addresses
- Documents
- Access Tokens
- Webhooks
Core Wallet
- Wallets
- Balances
- Accounts
- Contacts
- Payment Links
- Statements
- Transfers
- Transactions
Billing & Payments
- Customers
- Plans
- Vouchers
- Invoices
- Subscriptions
- Payments
Integrations
- Payment Providers
Analytics & Logs
- Metrics
- Logs
Resources
- Banks
- Countries
- Currencies
- Events
- Industries
- Legal Form
- Providers
- Scopes
Get Wallet
Fetch wallet information.
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
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
The Wallet ID.
Response
200
application/json
Successfully retrieved wallet details.
Example:
true
Example:
"buw_123456"
Example:
"vault"
Example:
"Cash Wallet"
Example:
false
Example:
true
Type of wallet.
Available options:
fiat
, crypto
Example:
"fiat"
Available options:
personal
, business
Example:
"business"
Was this page helpful?
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"
}
}