Token Contracts

Get token contracts by slug

get

Retrieve contract information for a specific token identified by its slug. Returns contract addresses and blockchain-specific deployment details.

Authorizations
Path parameters
slugstringRequired

Token slug identifier

Example: ethereumPattern: ^[a-z0-9-]+$
Responses
200

Token contract information

application/json
get
GET /token/contracts/{slug} HTTP/1.1
Host: cell0.hyperbola.network
x-api-key: YOUR_API_KEY
Accept: */*
{
  "slug": "ethereum",
  "contracts": {
    "ethereum": "0x0000000000000000000000000000000000000000",
    "binance-smart-chain": "0x2170ed0880ac9a755fd29b2688956bd959f933f8",
    "polygon": "0x7ceb23fd6f0e96af3d7c4b5e8c2c6e01ec0a5e73"
  }
}

Last updated