Overview
While most APIs require contract addresses to retrieve token data, Mobula’s Universal Search (/api/2/fast-search) allows you to query tokens directly by their ticker symbol (like USDC, ETH, SOL). This is perfect for:
- Building search interfaces for users
- Quick token lookups without knowing the address
- Supporting multiple chains with a single query
Quick Start
Basic Ticker Search
Exact Symbol Match
Wrap your ticker in double quotes for exact matching (useful for short tickers):Code Examples
TypeScript / JavaScript
Python
Parameters
| Parameter | Type | Description |
|---|---|---|
input | string | The ticker/symbol to search for. Wrap in " for exact match. |
limit | number | Number of results (1-20, default: 5) |
sortBy | string | Sort metric: volume_24h, market_cap, fees_paid_24h, etc. |
filters | JSON | Filter options including blockchains |
Available Sort Options
search_score- Composite ranking (fees × liquidity) (default)volume_24h- 24h trading volumemarket_cap- Market capitalizationvolume_5min/volume_1h- Short-term volumefees_paid_5min/fees_paid_1h/fees_paid_24h- Trading feesholders_count- Number of holderscreated_at- Token creation date
Response Format
Each token in the response follows the full Token Details data model. Here’s an example with key fields:The response includes 100+ fields per token including organic metrics, trending scores, DEXScreener data, and more. See the Token Details endpoint for the complete schema.
2. Filter by Chain for Precision
If you know the target chain, filter to avoid cross-chain duplicates:3. Use Search Score for Discovery
Thesearch_score metric combines fees and liquidity - perfect for finding actively traded tokens:
Common Use Cases
Token Autocomplete
Build a search bar with live suggestions:Multi-chain Token Resolver
Get the same token across multiple chains:Next Steps
- Universal Search API Reference - Full API documentation
- Token Details - Get complete token data by address
- Token Price - Real-time price data
Support
Need help? Join our community:- Discord
- Telegram
- Email: [email protected]