Get Wallet Balance
This guide is for retrieving all wallets linked to your account
Create a new user
GET /wallets/{address}
Headers
Name
Value
Content-Type
application/json
Token
<token>
Query Params
Name
Type
Description
address
string
The cryptocurrency network (e.g., Ethereum/Tron).
Response
The response will be in JSON format and contains the following structure
{
"status": "1",
"message": "Request was successful",
"data": {
"crypto_address": "TL1234aiqsJacvpji9QWMBazeEbTCKHpTN",
"network": "Tron",
"symbol": "USDT",
"actual_balance": 100
}
}{
"status": "0",
"message": "No Balance(s) found for this address"
}Last updated