Skip to main content

Endpoint

https://api.0xmeta.ai/v1/markets/liquidity

Description

Retrieve snapshots of liquidity movements, whale transfers, and total value locked (TVL) shifts as tracked by 0xmeta’s analytics engine.

Query Parameters

NameTypeDescriptionDefault
limitintegerMax number of records returned10
timeframestringTime window for analysis (e.g., 1h, 24h, 7d)24h

Response Example

{
  "success": true,
  "timeframe": "24h",
  "liquidity_signals": [
    {
      "token": "$USDC",
      "chain": "Ethereum",
      "amount_in": 5000000,
      "amount_out": 1200000,
      "timestamp": 1730566890.0
    },
    {
      "token": "$ETH",
      "chain": "Base",
      "amount_in": 13000,
      "amount_out": 8000,
      "timestamp": 1730566800.0
    }
  ],
  "payer": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb"
}