Search Solana tokens and pairs
POST /api/sol-token-searchFind Solana tokens and pairs by name, ticker or address across every DEX DexScreener indexes, filtered to Solana only, in DexScreener relevance order: base and quote token, mint addresses, DEX, price, liquidity, 24h volume and change, transaction counts, pair age and whether the token has a filled-in profile (ticker impostors usually do not). Resolve a ticker to a mint before calling sol-token-safety or sol-swap-quote. Keyless.
Input
| Field | Type | Description |
|---|---|---|
query * | string | Token name, ticker, or address (1-80 chars). |
limit | number | Pairs to return (1-30, default 10). |
Example output
{
"query": "JUP",
"totalSolanaPairs": 28,
"pairs": [
{
"pairAddress": "EoFt...",
"dex": "meteora",
"labels": [
"DLMM"
],
"base": {
"address": "JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN",
"symbol": "JUP",
"name": "Jupiter"
},
"quote": {
"address": "So11111111111111111111111111111111111111112",
"symbol": "SOL"
},
"priceUsd": 0.2034,
"priceNative": 0.00217,
"liquidityUsd": 1260729.15,
"fdv": 1395785031,
"marketCap": 675335464,
"volume": {
"m5": 1000,
"h1": 20000,
"h6": 100000,
"h24": 500000
},
"priceChangePct": {
"m5": 0,
"h1": -0.3,
"h6": 0.2,
"h24": -2.4
},
"txns24h": {
"buys": 900,
"sells": 850
},
"txns1h": {
"buys": 30,
"sells": 28
},
"pairCreatedAt": "2025-01-01T00:00:00.000Z",
"ageHours": 14000,
"hasProfile": true,
"url": "https://dexscreener.com/solana/eoft..."
}
],
"note": "Rows keep DexScreener relevance order.",
"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-search \
-H "Content-Type: application/json" \
-d '{"query":"JUP","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-search", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
"query": "JUP",
"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 →