Use this when an agent or a human asks 'is this Solana token safe, a joke, or a
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.
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://x402-accelerometer-feed.fly.dev/solana/token-verdict/:mint
| Category | Market data |
|---|---|
| Provider host | x402-accelerometer-feed.fly.dev |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 3 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
We never call tools that send, buy, move money or file anything, not even without paying.
Example input (from the provider)
{
"method": "GET",
"pathParams": {
"mint": ":mint"
},
"queryParams": {},
"type": "http"
}
Promised output schema (from the provider)
{
"$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"
}