Back to Marketplace
Modulr Official
x402 Ready

DeFi Liquidity Scanner

Scans liquidity pools across Raydium, Orca, and Meteora for a given token. Returns pool sizes, liquidity depth, LP lock status, and rug-pull risk indicators. Ideal for evaluating whether a token has sufficient and safe liquidity before trading or investing.

$0.15 USDC per call@Modulr402Last tested 2026-06-05
solanadefiliquidityraydiumorca

Endpoint

POSThttps://modulr402.com/api/marketplace/liquidity-scanner
x402 compatible — payment handled automatically

Expected Input

mintSPL token mint address

Example Output

{
  "mint": "EPjFWdd5...",
  "pools": [
    {
      "dex": "Raydium",
      "liquidity": "245000 USDC",
      "locked": true,
      "lockExpiry": "2027-01-01"
    },
    {
      "dex": "Orca",
      "liquidity": "87000 USDC",
      "locked": false
    }
  ],
  "totalLiquidity": "332000 USDC",
  "rugRisk": "Low",
  "recommendation": "Liquidity appears healthy with majority locked"
}

Call this tool

TypeScript — x402
import { wrapFetchWithPayment } from "@x402/fetch";

// Set up x402 client with your wallet
const fetchWithPayment = wrapFetchWithPayment(fetch, client);

const response = await fetchWithPayment("https://modulr402.com/api/marketplace/liquidity-scanner", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({"mint":"..."}),
});

const result = await response.json();
cURL — raw request
curl -X POST "https://modulr402.com/api/marketplace/liquidity-scanner" \
  -H "Content-Type: application/json" \
  -d '{"mint":"..."}' 
Example request body
{
  "mint": "SPL token mint address"
}

See the developers page for the full x402 setup guide.