Skip to main content
GET
/
get-token-info
Get Token Information
curl --request GET \
  --url https://api.sandbox.brickken.com/get-token-info \
  --header 'x-api-key: <api-key>'
{
  "tokenSymbols": [
    "<string>"
  ],
  "tokenizerEmails": [
    "<string>"
  ]
}
Retrieves the list of token symbols available for the current API key.

Example

curl --request GET \
  --url 'https://api.sandbox.brickken.com/get-token-info' \
  --header 'x-api-key: YOUR_API_KEY'

Response

{
  "tokenSymbols": [
    "EXMPL"
  ],
  "tokenizerEmails": [
    "tokenizer@example.com"
  ]
}

Important

tokenSymbol may still be accepted in query, but it is currently ignored by backend logic. GET /get-token-info does not return wallet balances. If you need an owner’s balance for a token, use GET /get-balance-whitelist with:
  • tokenSymbol
  • investorEmail (the owner/investor email associated with that wallet)

Authorizations

x-api-key
string
header
required

Query Parameters

tokenSymbol
string
required

The symbol of the token.

Response

200 - application/json

Successful response

tokenSymbols
string[]

List of token symbols.

tokenizerEmails
string[]

List of tokenizer emails.