Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.hyreagent.fun/llms.txt

Use this file to discover all available pages before exploring further.

POST /lp/pools

Lists Meteora DLMM liquidity pools with real-time analytics. Supports server-side filtering by token, sorting by APR/volume/TVL, and pagination. Price: $0.001 per request Signal vocabulary: add_liquidity | hold Sources: Meteora DLMM

Parameters

sort
string
default:"apr"
Sort order. Options: apr, volume, tvl.
limit
integer
default:"50"
Maximum number of pools to return (max 100).
token
string
Filter by token mint address.
base
string
Filter by base token symbol (e.g., SOL).
quote
string
Filter by quote token symbol (e.g., USDC).
min_tvl
number
default:"0"
Minimum TVL in USD.

Example Request

curl -X POST https://mpp.hyreagent.fun/lp/pools \
  -H "Content-Type: application/json" \
  -H "X-PAYMENT: <x402-payment>" \
  -d '{"sort": "apr", "limit": 5, "min_tvl": 100000}'

Example Response

{
  "data": {
    "pools": [
      {
        "address": "5BVc...",
        "name": "SOL-USDC",
        "bin_step": 1,
        "base_fee_pct": 0.01,
        "tvl_usd": 4200000,
        "volume_24h_usd": 18700000,
        "fees_24h_usd": 18700,
        "apr_pct": 162.5,
        "token_x": { "symbol": "SOL", "mint": "So111..." },
        "token_y": { "symbol": "USDC", "mint": "EPjFW..." }
      }
    ],
    "total_pools": 1,
    "sort": "apr",
    "filter": { "min_tvl": 100000 }
  },
  "insight": "Top SOL-USDC pool showing 162% APR with $4.2M TVL — strong fee generation from high volume. Fee/TVL ratio of 0.44% daily is sustainable given current market volatility.",
  "signal": "add_liquidity",
  "confidence": 0.86,
  "sources": ["meteora-dlmm"],
  "model_used": "deepseek-v3.2",
  "latency_ms": 456,
  "timestamp": "2026-04-17T10:30:00.000Z"
}

Data Fields