Solana token trading pairs
POST /api/sol-token-pairsEvery 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.
Input
| Field | Type | Description |
|---|---|---|
mint * | string | Base58 SPL token mint address. |
limit | number | Pairs to return, deepest first (1-30, default 10). |
Example output
{
"mint": "JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN",
"totalPairs": 30,
"totals": {
"liquidityUsd": 95000000,
"volume24hUsd": 160000000,
"txns24h": 40000
},
"pairs": [
{
"pairAddress": "EoFt...",
"dex": "meteora",
"labels": [
"DLMM"
],
"base": {
"address": "JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN",
"symbol": "JUP",
"name": "Jupiter"
},
"quote": {
"address": "METv...",
"symbol": "MET"
},
"priceUsd": 0.2034,
"priceNative": 0.9139,
"liquidityUsd": 71508214.54,
"fdv": 1395785031,
"marketCap": 675335464,
"volume": {
"m5": 257492.32,
"h1": 1424742.93,
"h6": 37797815.88,
"h24": 149471020.95
},
"priceChangePct": {
"m5": 0.1,
"h1": -0.4,
"h6": -0.01,
"h24": -6.39
},
"txns24h": {
"buys": 1180,
"sells": 1249
},
"txns1h": {
"buys": 23,
"sells": 43
},
"pairCreatedAt": "2025-10-28T04:06:45.000Z",
"ageHours": 7160.2,
"hasProfile": true,
"url": "https://dexscreener.com/solana/eoft..."
}
],
"source": "dexscreener",
"fetchedAt": "2026-08-22T12:00:00.000Z"
}
Try it - see the 402 challenge (free)
curl -i -X POST https://agent402.tools/api/sol-token-pairs \
-H "Content-Type: application/json" \
-d '{"mint":"JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN","limit":5}'
The response is HTTP 402 Payment Required with exact payment requirements. Any x402 v2 client pays automatically and retries:
Paid call (JavaScript agent)
import { wrapFetchWithPayment } from "@x402/fetch";
import { x402Client } from "@x402/core/client";
import { registerExactEvmScheme } from "@x402/evm/exact/client";
import { privateKeyToAccount } from "viem/accounts";
const client = new x402Client();
registerExactEvmScheme(client, { signer: privateKeyToAccount(KEY) });
const payFetch = wrapFetchWithPayment(fetch, client);
const res = await payFetch("https://agent402.tools/api/sol-token-pairs", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
"mint": "JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN",
"limit": 5
}),
});
Related tools
Crypto order book
GET /api/crypto-orderbookL2 order-book snapshot for a spot pair: best bid/ask, mid price, spread (absolute + %), and the top N aggregated price l…
try in playground →Stablecoin peg monitor
GET /api/stablecoin-pegLive $1-peg deviation for the top USD stablecoins (USDT, USDC, USDS, DAI, USDe, PYUSD, USDD, TUSD, FDUSD by default, or …
try in playground →Wallet balance (native + ERC-20)
POST /api/wallet-balanceLook up the native coin balance (ETH/MATIC) plus every ERC-20 holding for a wallet address on Ethereum, Base, Polygon, A…
try in playground →