GET
/
get-whitelist-status
Get Whitelist Status
curl --request GET \
  --url https://api.sandbox.brickken.com/get-whitelist-status \
  --header 'x-api-key: <api-key>'
{
  "whitelistStatus": true
}
Checks if an address is whitelisted for a specific token.

Query Parameters

  • tokenSymbol (required): Token symbol
  • address (required): Wallet address to check
  • chainId (required): Blockchain network ID

Example

curl --request GET \
  --url 'https://api.sandbox.brickken.com/get-whitelist-status?tokenSymbol=EXMPL&address=0x742d35Cc6634C0532925a3b8D4C9db96c4b4d8b&chainId=0x89' \
  --header 'x-api-key: YOUR_API_KEY'

Response

{
  "isWhitelisted": true,
  "address": "0x742d35Cc6634C0532925a3b8D4C9db96c4b4d8b",
  "tokenSymbol": "EXMPL"
}

Authorizations

x-api-key
string
header
required

Query Parameters

tokenSymbol
string
required

The symbol of the token.

investorAddress
string
required

The Ethereum address of the investor.

Response

200 - application/json

Successful response

whitelistStatus
boolean

Whitelist status of the investor.