Use this when an agent or a human asks 'is this Solana token safe, a joke, or a rug?': sen
Use this when an agent or a human asks 'is this Solana token safe, a joke, or a rug?': send one mint address, get a graded verdict (BASED / MID / COOKED / RADIOACTIVE), a one-liner, a short roast, and the facts behind the grade: price, liquidity, 24h volume, FDV, pair age, holder count, top-10 concentration, mint and freeze authority, LP lock, rugcheck risk flags, launchpad. Grade is rule-based and reproducible from the facts. Entertainment, not trading advice.
20000 (raw units)
price
3
calls / 30d
1
unique payers
2026-09-17
updated
Provider
x402-accelerometer-feed.fly.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xbC3A8eAc0601F717E803935cABEDeE8EDB7713C4",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "5dBE1vqMVJCbxpBv9kw9nQJguUhYXk5mRGVfsxEF9cc4",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "20000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"pathParams": {
"mint": ":mint"
},
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"chain": "solana",
"disclaimer": "Entertainment, not financial advice.",
"facts": {
"dex": "orca",
"fdv_usd": 238228985,
"freeze_authority_live": false,
"holders": 2069663,
"launchpad": null,
"liquidity_total_usd": 1899540,
"liquidity_usd": 251283,
"lp_locked_pct": 21.15,
"metadata_mutable": true,
"mint_authority_live": false,
"name": "Bonk",
"pair_age_days": 1362,
"price_usd": 0.00000268,
"rugcheck_risks": [
{
"level": "warn",
"name": "Mutable metadata"
}
],
"rugcheck_score_normalised": 7,
"rugged": false,
"symbol": "Bonk",
"top10_pct": 38.62,
"top1_pct": 8.83,
"txns_24h": {
"buys": 9594,
"sells": 11542
},
"volume_24h_usd": 874402
},
"generated_at": "2026-09-17T10:40:00.000Z",
"grade": "MID",
"kind": "token_verdict",
"mint": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263",
"one_liner": "Bonk: the meme coin with a side of insider drama",
"reasons": [
"top 10 wallets hold 38.62%",
"34145 insider-flagged wallets (rugcheck graph)"
],
"risk_points": 2,
"roast": "Bonk trades at a microscopic $0.00000268, yet 38.62% of supply lives in the top 10 wallets. With 34,145 insider-flagged addresses and mutable metadata, the token's security feels as shaky as its price.",
"sources": {
"dexscreener": "https://dexscreener.com/solana/DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263",
"rugcheck": "https://rugcheck.xyz/tokens/DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263"
}
},
"type": "json"
}
},
"routeTemplate": "/solana/token-verdict/:mint",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"pathParams": {
"properties": {
"mint": {
"description": "Solana token mint address (base58, 32-44 chars)",
"type": "string"
}
},
"required": [
"mint"
],
"type": "object"
},
"queryParams": {
"properties": {},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"chain": {
"const": "solana",
"type": "string"
},
"disclaimer": {
"type": "string"
},
"facts": {
"description": "price/liquidity/volume/fdv (DexScreener), holders/top10%/authorities/LP lock/risk flags/launchpad (rugcheck)",
"type": "object"
},
"generated_at": {
"type": "string"
},
"grade": {
"enum": [
"BASED",
"MID",
"COOKED",
"RADIOACTIVE"
],
"type": "string"
},
"kind": {
"const": "token_verdict",
"type": "string"
},
"mint": {
"type": "string"
},
"one_liner": {
"maxLength": 60,
"type": "string"
},
"reasons": {
"items": {
"type": "string"
},
"type": "array"
},
"risk_points": {
"type": "integer"
},
"roast": {
"type": "string"
},
"sources": {
"type": "object"
}
},
"required": [
"kind",
"mint",
"grade",
"one_liner",
"roast",
"facts"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://x402-accelerometer-feed.fly.dev/solana/token-verdict/:mint" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://x402-accelerometer-feed.fly.dev/solana/token-verdict/:mint");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://x402-accelerometer-feed.fly.dev/solana/token-verdict/:mint")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/12317.json, and this resource appears in /discovery/resources and /discovery/search.