Solana token lookup (Jupiter)
POST /api/sol-token-lookupResolve a Solana token by mint, ticker or name through Jupiter's token index and get its profile in one read: name, symbol, decimals, price, market cap, FDV, liquidity, holder count, circulating and total supply, verified flag, organic score (Jupiter's wash-trade-resistant activity score), tags, launchpad, dev wallet, first pool and date, audit facts (mint and freeze authority disabled, top-holder share, dev mints) and 24h stats (price, holder and liquidity change, buy/sell volume, traders, net buyers). Up to 20 matches for a name search; a mint returns its exact match first. Keyless.
Input
| Field | Type | Description |
|---|---|---|
query * | string | Mint address, ticker, or token name (1-80 chars). |
limit | number | Matches to return (1-20, default 5). |
Example output
{
"query": "JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN",
"count": 1,
"tokens": [
{
"mint": "JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN",
"name": "Jupiter",
"symbol": "JUP",
"decimals": 6,
"priceUsd": 0.2034,
"marketCapUsd": 675335464.98,
"fdvUsd": 1395785031.78,
"liquidityUsd": 3092754.48,
"holderCount": 835540,
"circulatingSupply": 3320312968.08,
"totalSupply": 6862431164.93,
"isVerified": true,
"organicScore": 99.31,
"organicScoreLabel": "high",
"tags": [
"strict",
"verified",
"defi"
],
"audit": {
"mintAuthorityDisabled": true,
"freezeAuthorityDisabled": true,
"topHoldersPct": 15.28,
"devBalancePct": null,
"devMints": 1
},
"mintAuthority": null,
"freezeAuthority": null,
"launchpad": null,
"dev": "JUPh...",
"firstPool": {
"id": "2psp...",
"createdAt": "2024-01-29T17:33:29Z"
},
"stats24h": {
"priceChangePct": -2.4,
"holderChangePct": 0.1,
"liquidityChangePct": -1.2,
"buyVolumeUsd": 26000000,
"sellVolumeUsd": 25000000,
"numBuys": 1696,
"numSells": 1735,
"numTraders": 1191,
"numNetBuyers": 668
},
"createdAt": "2025-07-25T13:18:02Z"
}
],
"source": "jupiter",
"fetchedAt": "2026-08-22T12:00:00.000Z"
}
Try it - see the 402 challenge (free)
curl -i -X POST https://agent402.tools/api/sol-token-lookup \
-H "Content-Type: application/json" \
-d '{"query":"JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN","limit":3}'
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-lookup", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
"query": "JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN",
"limit": 3
}),
});
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 →