GET
/
get-tokenizer-info
Get Tokenizer Information
curl --request GET \
  --url https://api.sandbox.brickken.com/get-tokenizer-info \
  --header 'x-api-key: <api-key>'
{
  "companyWalletAddress": "<string>",
  "paymentTokenAddress": "<string>",
  "escrowAddress": "<string>",
  "chainId": "<string>",
  "email": "<string>"
}
Retrieves information about the tokenizer for a specific token.

Query Parameters

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

Example

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

Response

{
  "tokenizerAddress": "0x742d35Cc6634C0532925a3b8D4C9db96c4b4d8b",
  "tokenizerEmail": "tokenizer@example.com",
  "tokenSymbol": "EXMPL",
  "isActive": true
}

Authorizations

x-api-key
string
header
required

Query Parameters

tokenSymbol
string
required

The symbol of the token.

Response

200 - application/json

Successful response

companyWalletAddress
string

The company's wallet address.

paymentTokenAddress
string

The payment token's address.

escrowAddress
string

The escrow address.

chainId
string

The blockchain's chain ID.

email
string

The email of the tokenizer.