Token Search
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
Search query string for cryptocurrency tokens.
Tip: Try searching for popular tokens like "bitcoin", "ethereum", or "solana"
{"summary":"Search for Bitcoin","value":"bitcoin"}
List of matching tokens
Bad request - invalid parameters
Authentication required or invalid API key
Rate limit exceeded
Internal server error
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 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.
Search query string for cryptocurrency tokens.
Tip: Try searching for popular tokens like "bitcoin", "ethereum", or "solana"
{"summary":"Search for Bitcoin","value":"bitcoin"}
List of matching tokens with pricing data
Essential token information with current price data for search results
Bad request - invalid parameters
Authentication required or invalid API key
Rate limit exceeded
Internal server error
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