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: volume24h, marketCap, feesPaid24h, etc. (default: searchScore) |
filters | JSON | Filter options including blockchains |
Available Sort Options
searchScore- Composite ranking (fees × liquidity) (default)volume24h- 24h trading volumemarketCap- Market capitalizationvolume5min/volume1h- Short-term volumefeesPaid5min/feesPaid1h/feesPaid24h- Trading feesholdersCount- Number of holdersorganicVolume1h- Organic 1h volumetotalFeesPaidUsd- Total fees paid in USDcreatedAt- Token creation datetrendingScore24h- 24h trending score
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
ThesearchScore 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