Skip to main content
GET
/
2
/
market
/
lighthouse
Get market lighthouse metrics
curl --request GET \
  --url https://demo-api.mobula.io/api/2/market/lighthouse
{
  "data": {
    "total": {
      "volumeUSD": {
        "15min": 123,
        "1h": 123,
        "24h": 123
      },
      "trades": {
        "15min": 123,
        "1h": 123,
        "24h": 123
      },
      "buys": {
        "15min": 123,
        "1h": 123,
        "24h": 123
      },
      "sells": {
        "15min": 123,
        "1h": 123,
        "24h": 123
      },
      "feesPaidUSD": {
        "15min": 123,
        "1h": 123,
        "24h": 123
      }
    },
    "byChain": [
      {
        "volumeUSD": {
          "15min": 123,
          "1h": 123,
          "24h": 123
        },
        "trades": {
          "15min": 123,
          "1h": 123,
          "24h": 123
        },
        "buys": {
          "15min": 123,
          "1h": 123,
          "24h": 123
        },
        "sells": {
          "15min": 123,
          "1h": 123,
          "24h": 123
        },
        "feesPaidUSD": {
          "15min": 123,
          "1h": 123,
          "24h": 123
        },
        "name": "<string>",
        "logo": "<string>"
      }
    ],
    "byDex": [
      {
        "volumeUSD": {
          "15min": 123,
          "1h": 123,
          "24h": 123
        },
        "trades": {
          "15min": 123,
          "1h": 123,
          "24h": 123
        },
        "buys": {
          "15min": 123,
          "1h": 123,
          "24h": 123
        },
        "sells": {
          "15min": 123,
          "1h": 123,
          "24h": 123
        },
        "feesPaidUSD": {
          "15min": 123,
          "1h": 123,
          "24h": 123
        },
        "name": "<string>",
        "logo": "<string>"
      }
    ],
    "byLaunchpad": [
      {
        "volumeUSD": {
          "15min": 123,
          "1h": 123,
          "24h": 123
        },
        "trades": {
          "15min": 123,
          "1h": 123,
          "24h": 123
        },
        "buys": {
          "15min": 123,
          "1h": 123,
          "24h": 123
        },
        "sells": {
          "15min": 123,
          "1h": 123,
          "24h": 123
        },
        "feesPaidUSD": {
          "15min": 123,
          "1h": 123,
          "24h": 123
        },
        "name": "<string>",
        "logo": "<string>"
      }
    ],
    "byPlatform": [
      {
        "volumeUSD": {
          "15min": 123,
          "1h": 123,
          "24h": 123
        },
        "trades": {
          "15min": 123,
          "1h": 123,
          "24h": 123
        },
        "buys": {
          "15min": 123,
          "1h": 123,
          "24h": 123
        },
        "sells": {
          "15min": 123,
          "1h": 123,
          "24h": 123
        },
        "feesPaidUSD": {
          "15min": 123,
          "1h": 123,
          "24h": 123
        },
        "name": "<string>",
        "logo": "<string>"
      }
    ]
  }
}

Overview

The Market Lighthouse endpoint provides a high-level, real-time overview of on-chain trading activity across all supported blockchains, DEXes, launchpads, and trading platforms. Data is pre-computed and cached, refreshing every 5 minutes. No query parameters are required.

Usage Examples

curl -X GET "https://api.mobula.io/api/2/market/lighthouse"

Response Format

The response contains five top-level sections:
SectionDescription
totalAggregated metrics across all pools
byChainMetrics broken down by blockchain (Solana, Ethereum, BSC, etc.)
byDexMetrics broken down by DEX (Uniswap, Raydium, PancakeSwap, etc.)
byLaunchpadMetrics broken down by launchpad (PumpFun, etc.)
byPlatformMetrics broken down by trading platform (Axiom, BullX, Photon, GMGN, Phantom, etc.)
Each section contains the same set of metrics across three timeframes (15min, 1h, 24h):
MetricDescription
volumeUSDTotal trading volume in USD (double-sided: buy + sell)
tradesTotal number of trades
buysNumber of buy trades
sellsNumber of sell trades
feesPaidUSDTotal fees paid in USD

Example Response

{
  "data": {
    "total": {
      "volumeUSD": { "15min": 52489210.42, "1h": 198402841.55, "24h": 4812049201.12 },
      "trades": { "15min": 142850, "1h": 520140, "24h": 11284012 },
      "buys": { "15min": 74201, "1h": 268402, "24h": 5842001 },
      "sells": { "15min": 68649, "1h": 251738, "24h": 5442011 },
      "feesPaidUSD": { "15min": 48201.32, "1h": 182040.55, "24h": 4201842.18 }
    },
    "byChain": [
      {
        "name": "Solana",
        "logo": "https://...",
        "volumeUSD": { "15min": 32104820.11, "1h": 120481024.42, "24h": 2910482041.55 },
        "trades": { "15min": 98420, "1h": 358201, "24h": 7842001 },
        "buys": { "15min": 51200, "1h": 185100, "24h": 4021000 },
        "sells": { "15min": 47220, "1h": 173101, "24h": 3821001 },
        "feesPaidUSD": { "15min": 31042.11, "1h": 118042.33, "24h": 2810420.55 }
      }
    ],
    "byDex": [
      {
        "name": "Raydium",
        "logo": "https://...",
        "volumeUSD": { "15min": 18420104.22, "1h": 72048201.11, "24h": 1704820104.33 },
        "trades": { "15min": 58201, "1h": 210420, "24h": 4582010 },
        "buys": { "15min": 30100, "1h": 108200, "24h": 2351000 },
        "sells": { "15min": 28101, "1h": 102220, "24h": 2231010 },
        "feesPaidUSD": { "15min": 18204.11, "1h": 68420.22, "24h": 1620482.44 }
      }
    ],
    "byLaunchpad": [
      {
        "name": "PumpFun",
        "logo": "https://...",
        "volumeUSD": { "15min": 8420104.11, "1h": 32048201.22, "24h": 782048201.33 },
        "trades": { "15min": 28420, "1h": 104201, "24h": 2284010 },
        "buys": { "15min": 14800, "1h": 53800, "24h": 1172000 },
        "sells": { "15min": 13620, "1h": 50401, "24h": 1112010 },
        "feesPaidUSD": { "15min": 8104.22, "1h": 30420.11, "24h": 742048.55 }
      }
    ],
    "byPlatform": [
      {
        "name": "Axiom",
        "logo": "https://i.imgur.com/aw63mVw.png",
        "volumeUSD": { "15min": 4820104.11, "1h": 18204820.22, "24h": 420482041.33 },
        "trades": { "15min": 12420, "1h": 48201, "24h": 1042010 },
        "buys": { "15min": 6400, "1h": 24800, "24h": 535000 },
        "sells": { "15min": 6020, "1h": 23401, "24h": 507010 },
        "feesPaidUSD": { "15min": 4820.11, "1h": 18042.22, "24h": 398204.44 }
      }
    ]
  }
}

Response

200 - application/json

Market lighthouse response

data
object
required