# MintVerdict Risk Assessment

> MintVerdict Risk Assessment is a paid API for AI agents from api.mintverdict.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns a composite rug/bundle risk verdict for a Solana token mint, including mint/freeze authority checks, LP burn status, holder clustering analysis, RugCheck score, and live launch-bundle re-check.

## Facts

- Endpoint: GET https://api.mintverdict.com/v1/mint/:mint/risk
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mintverdict-risk-assessment-b960416a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pad3kxshE9A1e7lSAhLFi

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 mintverdict-risk-assessment-b960416a
```

Example prompt: Can you run a full rug and bundle risk check on the Solana token with mint address 7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU and tell me if it's safe to snipe?

## When to prefer this

Use MintVerdict when you need a fast, multi-signal rug risk verdict for a Solana token before executing a trade or snipe — especially when you need both static validation signals (authority checks, LP burn) and dynamic launch-bundle detection in a single call. Prefer this over manual RugCheck lookups or single-signal checks when operating an automated sniper bot or performing pre-trade safety gates.

## Known failure modes

- Invalid or malformed base58 mint address returns a 400 error
- Mint address not found on-chain or not a valid SPL token returns a 404
- RPC congestion or on-chain data unavailability may cause timeouts
- Payment failure via x402 protocol returns 402 if USDC balance is insufficient
- Rate limiting may apply under high request volume

## How this service works

Rug/bundle risk verdict for a Solana mint: validation-gauntlet snapshot (mint/freeze authority, LP burn, holder clustering, RugCheck, composite score) plus a live launch-bundle re-check. Same verdicts a live sniper bot trades on.

## Output

A structured risk verdict containing: composite risk score, mint authority status (open/renounced), freeze authority status, LP burn percentage, holder clustering/concentration metrics, RugCheck aggregated verdict, and a live launch-bundle re-check result indicating whether early buys were bot-bundled.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "mint"
     ],
     "properties": {
      "mint": {
       "type": "string",
       "description": "Solana token mint address (base58)"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mintverdict-risk-assessment-b960416a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.mintverdict.com](https://www.zero.xyz/host/api.mintverdict.com/llms.txt)
