Token Info
Retrieve complete token information by a specific field (slug, symbol, or name). This endpoint returns full TokenInfo objects with all metadata.
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
fieldstring · enumRequiredExample:
The field to search by. Choose from available options:
- slug: Unique token identifier (recommended)
- symbol: Token ticker (e.g., BTC, ETH)
- name: Full token name
{"summary":"Search by slug","value":"slug"}Possible values: valuestring · min: 1 · max: 100RequiredExample:
The value to search for in the specified field.
Examples by field:
- slug: "bitcoin", "ethereum"
- symbol: "BTC", "ETH"
- name: "Bitcoin", "Ethereum"
{"summary":"Bitcoin slug","value":"bitcoin"}Responses
200
Complete token 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/by/{field}/{value}Last updated