Crypto Search API - Find Coins by Name or Symbol
Searches the cryptocurrency registry for coins matching your query. Returns the coin ID (used in other endpoints), full name, ticker symbol, and market cap rank. Ideal for building autocomplete inputs, coin pickers, and search-driven crypto UIs.
Code examples
curl -X POST https://api.botoi.com/v1/exchange/search \
-H "Content-Type: application/json" \
-d '{"query":"ethereum"}'When to use this API
Autocomplete coin picker in trading UIs
As the user types in a coin search field, query this endpoint with debounced input (150-300ms). Display matching coins with their name, symbol, and rank. When the user selects a coin, pass its ID to the crypto price endpoint to fetch live data.
Coin directory and exploration pages
Build a searchable directory of cryptocurrencies. Let users browse coins by name, filter by market cap rank, and click through to detailed pages showing live prices, charts, and market data.
Portfolio import with fuzzy matching
When a user pastes a list of coin names or symbols from a spreadsheet, use this endpoint to resolve each entry to a canonical coin ID. Handle ambiguous entries (e.g., "ETH" matching both Ethereum and Ethereum Classic) by showing the user a disambiguation picker.
Frequently asked questions
Can I search by ticker symbol?
How do I use the coin ID from the results?
Are new coins added automatically?
What does market_cap_rank represent?
Is the search case-sensitive?
Get your API key
Free tier includes 5 requests per minute with no credit card required. Upgrade for higher limits.