Balances
The balance object
This object represents the balance of one of your holders. This balance merges the following sources of information:
Off-Chain Balance. This balance represents any $TOKENs a user has been allocated, but has not yet claimed.
On-Chain Balance. This balance represents $TOKENs within the user's wallet.
Retrieve balance
Authorizations
Path parameters
userIdstringRequired
Query parameters
identifierTypestring · enumRequiredPossible values:
Responses
200
Ok
application/json
get
GET /v1/wallets/{userId}/balance HTTP/1.1
Host: localhost:8080
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
200
Ok
{
"onChain": 1,
"offChain": 1
}
Last updated