Skip to main content
GET
/
get-balance-whitelist
Get Balance and Whitelist Status
curl --request GET \
  --url https://api.sandbox.brickken.com/get-balance-whitelist \
  --header 'x-api-key: <api-key>'
{
  "bknFees": "<string>",
  "senderBalance": "<string>"
}
Retrieves token balance and whitelist status for an address.

Query Parameters

  • tokenSymbol (required): Token symbol
  • investorEmail (required): Email of the investor

Example

curl --request GET \
  --url 'https://api.sandbox.brickken.com/get-balance-whitelist?tokenSymbol=EXMPL&[email protected]' \
  --header 'x-api-key: YOUR_API_KEY'

Response

{
  "balance": "500000000000000000",
  "isWhitelisted": true
}

Authorizations

x-api-key
string
header
required

Query Parameters

tokenSymbol
string
required

The symbol of the token.

investorEmail
string
required

The email of the investor.

Response

200 - application/json

Successful response

bknFees
string

Amount of BKN fees.

senderBalance
string

Balance of the sender.