Skip to main content
TL;DR: Get prices in EUR, GBP, JPY and 8 other fiat currencies on market/details and token/details endpoints via the new currencies parameter.
Added support for multiple fiat currencies on market/details and token/details endpoints.

New Parameter

  • currencies - Comma-separated list of fiat currencies (e.g., currencies=EUR,USD,GBP)

Supported Currencies

CurrencyCode
US DollarUSD (default)
EuroEUR
British PoundGBP
Japanese YenJPY
Swiss FrancCHF
Canadian DollarCAD
Australian DollarAUD
Chinese YuanCNY
Korean WonKRW
Indian RupeeINR
Brazilian RealBRL

How it works

  • All fields ending in USD get corresponding fields for each requested currency
  • Example: priceUSDpriceEUR, priceGBP, etc.
  • Exchange rates are fetched from reliable forex providers and cached

Example Request

curl "https://api.mobula.io/api/2/token/details?blockchain=solana&address=...&currencies=EUR,USD"

Example Response

{
  "data": {
    "priceUSD": 0.0234,
    "priceEUR": 0.0215,
    "marketCapUSD": 18720000,
    "marketCapEUR": 17181600,
    "volume24hUSD": 890000.50,
    "volume24hEUR": 816810.46
  }
}

Affected Endpoints

  • GET /api/2/token/details
  • POST /api/2/token/details
  • GET /api/2/market/details
  • POST /api/2/market/details
Exchange rates are updated every 30 minutes and cached for optimal performance.