{
  "x402Version": 2,
  "id": 12317,
  "slug": "12317",
  "resource": "https://x402-accelerometer-feed.fly.dev/solana/token-verdict/:mint",
  "description": "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.",
  "type": "http",
  "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
    }
  ],
  "outputSchema": {
    "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"
      }
    }
  },
  "tags": [
    "bazaar"
  ],
  "sourceHost": "x402-accelerometer-feed.fly.dev",
  "lastUpdated": "2026-09-17T10:52:57.955Z",
  "quality": {
    "calls30d": 3,
    "uniquePayers30d": 1,
    "lastCalledAt": "2026-09-17T10:52:57.726Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "x402-accelerometer-feed.fly.dev",
    "manifest_name": "x402-accelerometer-feed.fly.dev",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}