Query details
| Parameter | Type | Description |
|---|
blockchain | string | Blockchain name or ID (e.g., “Solana”, “1” for Ethereum) |
address | string | Token contract address |
Note: Always query using the address, not the name or symbol, to get accurate results.
| Field | Type | Description |
|---|
priceUSD | number | null | Current token price in USD |
marketCapUSD | number | null | Market cap based on circulating supply |
marketCapDilutedUSD | number | null | Fully diluted market cap |
liquidityUSD | number | null | Current liquidity in USD |
liquidityMaxUSD | number | null | Maximum liquidity across all pools |
name | string | null | Token name |
symbol | string | null | Token symbol |
logo | string | null | Token logo URL |
Usage Examples
curl -X GET "https://api.mobula.io/api/2/token/price?address=So11111111111111111111111111111111111111112&blockchain=Solana"
Example Response
{
"data": {
"name": "Wrapped SOL",
"symbol": "SOL",
"logo": "https://...",
"priceUSD": 187.45,
"marketCapUSD": 91000000000,
"marketCapDilutedUSD": 110000000000,
"liquidityUSD": 250000000,
"liquidityMaxUSD": 300000000
}
}