Token Search

get

Search for cryptocurrency tokens by name, symbol, or other attributes. Uses intelligent search with fuzzy matching and ranking based on relevance.

The search algorithm performs:

  • Exact matches (highest priority)

  • Prefix matches

  • Substring matches

  • Fuzzy matches with Levenshtein distance

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:

  1. Contact the Hyperbola team at support@hyperbola.network
  2. Provide your use case and expected API usage
  3. 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
Query parameters
querystring · min: 1 · max: 100Required

Search query string for cryptocurrency tokens.

Tip: Try searching for popular tokens like "bitcoin", "ethereum", or "solana"

Example: {"summary":"Search for Bitcoin","value":"bitcoin"}
Responses
200

List of matching tokens

application/json
get
/token/search
GET /token/search?query=text HTTP/1.1
Host: cell0.hyperbola.network
x-api-key: YOUR_API_KEY
Accept: */*
[
  {
    "slug": "bitcoin",
    "name": "Bitcoin",
    "symbol": "BTC",
    "logo": "https://cryptologos.cc/logos/bitcoin-btc-logo.png"
  }
]

Search tokens with pricing

get

Search for cryptocurrency tokens and include current pricing data. Combines the token search functionality with real-time price information.

This endpoint performs the same intelligent search as /token/search but enriches the results with current market pricing data for each token.

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:

  1. Contact the Hyperbola team at support@hyperbola.network
  2. Provide your use case and expected API usage
  3. 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
Query parameters
querystring · min: 1 · max: 100Required

Search query string for cryptocurrency tokens.

Tip: Try searching for popular tokens like "bitcoin", "ethereum", or "solana"

Example: {"summary":"Search for Bitcoin","value":"bitcoin"}
Responses
200

List of matching tokens with pricing data

application/json
Responseall of[]

Essential token information with current price data for search results

get
/token/search/price
GET /token/search/price?query=text HTTP/1.1
Host: cell0.hyperbola.network
x-api-key: YOUR_API_KEY
Accept: */*
[
  {
    "slug": "bitcoin",
    "name": "Bitcoin",
    "symbol": "BTC",
    "logo": "https://cryptologos.cc/logos/bitcoin-btc-logo.png",
    "price": 45000.5
  }
]

Last updated