# Token Verdict — Solana Token Safety Grader

> Token Verdict — Solana Token Safety Grader is a paid API for AI agents from x402-accelerometer-feed.fly.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-18).

Analyzes a Solana token mint address and returns a graded safety verdict (BASED/MID/COOKED/RADIOACTIVE) with a one-liner, roast, and supporting on-chain facts.

## Facts

- Endpoint: GET https://x402-accelerometer-feed.fly.dev/solana/token-verdict/:mint
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-18
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/token-verdict-solana-token-safety-grader-593886ad
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ws4_W56b_USMJFXPpV7zB

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability token-verdict-solana-token-safety-grader-593886ad
```

Example prompt: Is this Solana token safe or a rug? Give me the verdict for mint address DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263.

## When to prefer this

Use this endpoint when you need a quick, opinionated, rule-based safety grade for a specific Solana token mint address — especially for memecoins or unknown tokens where rug pull risk is a concern. It aggregates DexScreener and Rugcheck data in one call, saving you from querying multiple APIs. Prefer this over raw DexScreener or Rugcheck calls when you want a pre-computed grade with entertaining context rather than raw data. Not for Ethereum/Base/other chains — Solana mints only.

## Known failure modes

- Unknown or invalid mint address — endpoint may return error or empty facts
- Token too new / no DexScreener pair yet — liquidity and price data may be missing
- Rugcheck data unavailable for obscure tokens — risk flags may be incomplete
- Network or upstream API timeout from DexScreener or Rugcheck — delayed or partial response
- Malformed base58 mint address — likely 4xx validation error

## How this service works

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.

## Output

Returns a JSON object with: grade enum (BASED/MID/COOKED/RADIOACTIVE), a short one-liner (≤60 chars), a roast string, risk_points integer, a facts object containing price, liquidity, 24h volume, FDV, pair age, holder count, top-10 holder concentration percentage, mint authority, freeze authority, LP lock status, rugcheck risk flags, and launchpad — plus sources, generated_at timestamp, and a disclaimer.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "mint"
     ],
     "properties": {
      "mint": {
       "type": "string",
       "description": "Solana token mint address (base58, 32-44 chars)"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "kind",
      "mint",
      "grade",
      "one_liner",
      "roast",
      "facts"
     ],
     "properties": {
      "kind": {
       "type": "string",
       "const": "token_verdict"
      },
      "mint": {
       "type": "string"
      },
      "chain": {
       "type": "string",
       "const": "solana"
      },
      "facts": {
       "type": "object",
       "description": "price/liquidity/volume/fdv (DexScreener), holders/top10%/authorities/LP lock/risk flags/launchpad (rugcheck)"
      },
      "grade": {
       "enum": [
        "BASED",
        "MID",
        "COOKED",
        "RADIOACTIVE"
       ],
       "type": "string"
      },
      "roast": {
       "type": "string"
      },
      "reasons": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "sources": {
       "type": "object"
      },
      "one_liner": {
       "type": "string",
       "maxLength": 60
      },
      "disclaimer": {
       "type": "string"
      },
      "risk_points": {
       "type": "integer"
      },
      "generated_at": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/token-verdict-solana-token-safety-grader-593886ad/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-accelerometer-feed.fly.dev](https://www.zero.xyz/host/x402-accelerometer-feed.fly.dev/llms.txt)
