- TranSwap Api v1.8.8
- Access Token
- Accounts
- Contacts
- Conversions
- References
- Transfers
- Wallets
- CallBacks
Find Wallets
GET
/v1/wallets
Wallets
Last modified:2024-09-11 00:41:03
Maintainer:Not configured
Wallet(s)
by parameter(s).Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Query Params
currency
string | null
optional
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/v1/wallets'
Responses
🟢200OK
application/json
Body
Information of Pagination.
items
array[object (WalletView) {6}]
optional
currency
string
required
account_number
string
required
available_amount
number <double>
optional
reserved_amount
number <double>
optional
pending_amount
number <double>
optional
bank
object
ContactBankAccountDetail
Recipient
.page_index
integer
optional
Example:
0
page_size
integer
optional
Example:
20
total_items
integer
optional
Example:
1
total_page
integer
optional
Example:
1
Example
{
"items": [
{
"id": "411d506e-435e-4b3b-a2bc-1dcc0ff536c0",
"currency": "SGD",
"account_number": "B2004SG00041",
"available_amount": "32000.00000",
"reserved_amount": "0.00000",
"pending_amount": "0.00000",
"bank": {
"bank_name": "Oversea-Chinese Banking Corporation Limited",
"bank_address": "",
"bank_country": "SG",
"bank_account_currency": "SGD",
"bank_account_name": "xxx",
"bank_account_number": "xxx",
"ts_bank_code": "TSSG0034",
"swift_bic_code": "OCBCSGSG",
"bank_code": null,
"sort_code": null,
"iban_code": null,
"bsb_code": null,
"zengin_code": null,
"ifsc_code": null,
"cnaps_code": null,
"aba_routing_number": null
}
}
],
"page_index": 0,
"page_size": 20,
"total_items": 1,
"total_page": 1
}
🟠400Bad Request
🟠401Unauthorized
🟠429429
🔴500Server Error
Modified at 2024-09-11 00:41:03