Token Contracts
Retrieve contract information for a specific token identified by its slug. Returns contract addresses and blockchain-specific deployment details.
Authorizations
x-api-keystringRequired
API Key Authentication
All endpoints require a valid API key in the x-api-key header.
How to get your API key:
- Contact the Hyperbola team at support@hyperbola.network
- Provide your use case and expected API usage
- Receive your unique API key via secure email
Using with Scalar/GitBook:
- Click the "Test Request" button on any endpoint
- In the Authentication section, enter your API key
- The key will be automatically added to all requests
Example:
x-api-key: your-actual-api-key-here
Security:
- Keep your API key secure and never expose it in client-side code
- API keys are rate-limited and monitored for abuse
- Contact support immediately if you suspect your key is compromised
Path parameters
slugstringRequiredExample:
Token slug identifier
ethereumPattern: ^[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
/token/contracts/{slug}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