# Agent402.Tools - Solana Token Trading Pairs Lookup

> Agent402.Tools - Solana Token Trading Pairs Lookup is a paid API for AI agents from agent402.tools, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-13).

Returns the deepest liquidity trading pairs for a given Solana SPL token mint address, including DEX, volume, price, market cap, and transaction data.

## Facts

- Endpoint: POST https://agent402.tools/api/sol-token-pairs
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent402-tools-solana-token-trading-pairs-lookup-c3a1409f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dsA0l9yNE8QsMxo3RcpBL

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 agent402-tools-solana-token-trading-pairs-lookup-c3a1409f -d '<json body>'
```

Example prompt: Pull up the top 5 deepest liquidity trading pairs for the JUP token on Solana — the mint address is JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN — and show me the volume, price, and which DEXes it's listed on.

## When to prefer this

Use this endpoint when you need real-time DEX trading pair data specifically for Solana SPL tokens, including liquidity depth, volume, and transaction-level analytics sourced from DexScreener. Prefer this over generic token info APIs when you need to compare multiple DEX pairs side-by-side or assess which venue offers the deepest liquidity for a Solana token trade. It is ideal for pre-trade routing, token research, and DeFi analytics on Solana.

## Known failure modes

- Invalid or non-existent mint address returns empty pairs array or error
- Mint address for a very new or illiquid token may return zero pairs
- Limit value outside 1-30 range may be rejected or clamped
- Network or upstream DexScreener API unavailability causes failure
- Malformed Base58 mint address returns a validation error

## How this service works

Every DEX pair trading a Solana token mint (Raydium, Orca, Meteora, Pump.fun AMM and the rest), sorted by liquidity: pair address, DEX, price in USD and in the quote token, liquidity, FDV and market cap, 5m/1h/6h/24h volume and price change, buy/sell transaction counts, pair age in hours, plus totals across pairs. One DexScreener request, keyless.

## Output

A JSON object containing the token mint, a ranked list of trading pairs (sorted by liquidity depth), each with DEX name, pair address, base and quote token info, labels (e.g. DLMM), USD and native prices, liquidity in USD, 5m/1h/6h/24h volume, buy/sell transaction counts, market cap, FDV, pair age in hours, creation timestamp, price change percentages, and a DexScreener URL. Also includes aggregate totals for 24h transactions, total liquidity, and total 24h volume across all pairs, plus the data source and fetch timestamp.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "mint": {
   "type": "string",
   "description": "Base58 SPL token mint address."
  },
  "limit": {
   "type": "number",
   "description": "Pairs to return, deepest first (1-30, default 10)."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "mint": "JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN",
  "pairs": [
   {
    "dex": "meteora",
    "fdv": 1395785031,
    "url": "https://dexscreener.com/solana/eoft...",
    "base": {
     "name": "Jupiter",
     "symbol": "JUP",
     "address": "JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN"
    },
    "quote": {
     "symbol": "MET",
     "address": "METv..."
    },
    "labels": [
     "DLMM"
    ],
    "txns1h": {
     "buys": 23,
     "sells": 43
    },
    "volume": {
     "h1": 1424742.93,
     "h6": 37797815.88,
     "m5": 257492.32,
     "h24": 149471020.95
    },
    "txns24h": {
     "buys": 1180,
     "sells": 1249
    },
    "ageHours": 7160.2,
    "priceUsd": 0.2034,
    "marketCap": 675335464,
    "hasProfile": true,
    "pairAddress": "EoFt...",
    "priceNative": 0.9139,
    "liquidityUsd": 71508214.54,
    "pairCreatedAt": "2025-10-28T04:06:45.000Z",
    "priceChangePct": {
     "h1": -0.4,
     "h6": -0.01,
     "m5": 0.1,
     "h24": -6.39
    }
   }
  ],
  "source": "dexscreener",
  "totals": {
   "txns24h": 40000,
   "liquidityUsd": 95000000,
   "volume24hUsd": 160000000
  },
  "fetchedAt": "2026-08-22T12:00:00.000Z",
  "totalPairs": 30
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent402-tools-solana-token-trading-pairs-lookup-c3a1409f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent402.tools](https://www.zero.xyz/host/agent402.tools/llms.txt)
