Token Contracts
Retrieve contract information for a specific token identified by its slug. Returns contract addresses and blockchain-specific deployment details.
Authorizations
Path parameters
slugstringRequiredExample:
Token slug identifier
ethereum
Pattern: ^[a-z0-9-]+$
Responses
200
Token contract information
application/json
400
Bad request - invalid parameters
application/json
401
Authentication required or invalid API key
text/plain
404
Resource not found
application/json
429
Rate limit exceeded
application/json
500
Internal server error
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