# Suverse Solana DEX Liquidity Pools

> Suverse Solana DEX Liquidity Pools is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns top Solana liquidity pools across Raydium, Orca, Meteora, and other DEXs with TVL, 24h volume, fee tier, and current price.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-solana-dex-pools
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/proxy-suverse-io-c184e284
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YNKlnNo9UXMTkIbT6lL1F

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability proxy-suverse-io-c184e284 -d '<json body>'
```

Example prompt: Pull the top liquidity pools on Solana right now — I need each pool's token pair, TVL, 24-hour volume, fee tier, and current price across Raydium, Orca, and Meteora so I can find the best route for a large USDC-to-SOL swap.

## When to prefer this

Use this endpoint when you need real-time Solana DEX pool data aggregated across multiple protocols (Raydium, Orca, Meteora) in a single call. Ideal for AI trading bots, MEV searchers, arbitrage agents, and Jupiter aggregator users who need cross-DEX liquidity intelligence without querying each protocol separately.

## Known failure modes

- Payment not included or invalid x402 USDC payment → 402 Payment Required
- Upstream DEX data source unavailable → 503 or empty result set
- Malformed POST body → 400 Bad Request
- Rate limit exceeded → 429 Too Many Requests

## How this service works

Top Solana DEX liquidity pools across Raydium, Orca, Meteora and others. Token pair, TVL USD, 24h volume, fee tier, current price. AI agent Solana liquidity finder, MEV searcher, arbitrage bot, Jupiter aggregator user, SPL DEX API. Concentrated + standard pools.

## Output

A list of top Solana DEX liquidity pools including token pair names, TVL in USD, 24-hour trading volume, fee tier percentage, current price, pool type (concentrated or standard), and the DEX source (Raydium, Orca, Meteora, etc.).

## Example request

```json
{
 "dexs": [
  "raydium",
  "orca",
  "meteora"
 ],
 "limit": 10,
 "minTvl": 100000,
 "sortBy": "tvl"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/proxy-suverse-io-c184e284/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
