Balance
GEThttp://localhost:8080/wallet/balance
Returns the current balance of the wallet (available and locked tokens)
Responses
- 200
Success
- application/json
- Schema
- success
Schema
any
Success
{
"balance": {
"available": 5000,
"locked": 1000
}
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L 'http://localhost:8080/wallet/balance' \
-H 'Accept: application/json'
ResponseClear