Skip to main content

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
The API responds in under 30ms and returns detailed token information matching your query.

Quick Start

This returns all tokens with the symbol or name starting with “usdc”, sorted by trading activity.

Exact Symbol Match

Wrap your ticker in double quotes for exact matching (useful for short tickers):
This returns only tokens with the exact symbol “W” (like Wormhole), not “WETH”, “WBTC”, etc.

Code Examples

TypeScript / JavaScript

Python

Parameters

ParameterTypeDescription
inputstringThe ticker/symbol to search for. Wrap in " for exact match.
limitnumberNumber of results (1-20, default: 5)
sortBystringSort metric: volume24h, marketCap, feesPaid24h, etc. (default: searchScore)
filtersJSONFilter options including blockchains

Available Sort Options

  • searchScore - Composite ranking (fees × liquidity) (default)
  • volume24h - 24h trading volume
  • marketCap - Market capitalization
  • volume5min / volume1h - Short-term volume
  • feesPaid5min / feesPaid1h / feesPaid24h - Trading fees
  • holdersCount - Number of holders
  • organicVolume1h - Organic 1h volume
  • totalFeesPaidUsd - Total fees paid in USD
  • createdAt - Token creation date
  • trendingScore24h - 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

The searchScore 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

Support

Need help? Join our community: