# Suverse Token Safety Check

> Suverse Token Safety Check is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns a comprehensive Solana token safety verdict including risk level, exit cost from a live $500 quote, top-10 holder concentration, token age, mint/freeze authority status, 24h momentum, and smart-money wallet activity.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/token-check
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-token-safety-check-7491c679
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OgHXdarvtjn3BliAAjZyK

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 suverse-token-safety-check-7491c679 -d '<json body>'
```

Example prompt: Can you run a full safety check on this Solana token — I need the risk level, whether smart money has been buying or selling it lately, what it would cost me to exit a $500 position, and whether mint or freeze authority is still active?

## When to prefer this

Use this endpoint when you need a single, consolidated Solana token safety verdict before entering a position. It is specifically valuable when you want holder concentration with pools excluded (avoiding false concentration signals), a real-world exit cost rather than a theoretical estimate, and smart-money sentiment — all in one call rather than aggregating multiple data sources. Prefer this over generic token info APIs when rug-pull risk, mint/freeze authority exposure, and elite wallet behavior are decision-critical.

## Known failure modes

- Token address not found or invalid — returns error indicating unrecognized token
- Token too new or illiquid for a valid $500 quote — exit cost may be unavailable or unreliable
- Smart-money data unavailable for obscure or brand-new tokens
- Rate limit or payment failure — x402 payment not processed, call not executed
- Network congestion on Solana causing stale on-chain data in the response

## How this service works

Solana token safety verdict in one call: risk level with flags, exit cost from a real $500 quote, top-10 holder concentration with pools excluded, token age, mint and freeze authority checks, 24h momentum, and whether elite smart-money wallets bought or sold it in the last 30 days. Answers: is this token sane to enter?

## Output

A structured safety verdict for a Solana token including: an overall risk level with specific flags, a real exit cost derived from a live $500 swap quote, top-10 holder concentration (with liquidity pools excluded), token age, mint authority and freeze authority status, 24-hour price momentum, and a summary of whether elite smart-money wallets have been buying or selling the token in the past 30 days.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/suverse-token-safety-check-7491c679/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
