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 detailed information about a token.

Query Parameters

  • tokenSymbol (required): Token symbol
  • chainId (required): Blockchain network ID

Example

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

Response

{
  "name": "Example Token",
  "symbol": "EXMPL",
  "totalSupply": "1000000000000000000000",
  "decimals": 18,
  "contractAddress": "0x742d35Cc6634C0532925a3b8D4C9db96c4b4d8b"
}

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.