# Suverse Token Entry Verdict

> Suverse Token Entry Verdict is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-15).

Returns an ENTER/CAUTION/AVOID safety verdict for a Solana token mint, combining token-check screening, smart-money netflow (24h/7d/30d), ring/bot trader detection, and tape-freshness signals.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/token-entry-verdict
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-token-entry-verdict-75d1f1ba
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nYjCXHy-y3oKloJwFAGYz

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-entry-verdict-75d1f1ba -d '<json body>'
```

Example prompt: Run a full safety screen on the Solana token mint So11111111111111111111111111111111111111112 and tell me whether I should ENTER, use CAUTION, or AVOID — including the smart-money netflow and whether bots or ring traders are active.

## When to prefer this

Choose this endpoint when you need a single opinionated go/no-go trading signal for a Solana token that combines safety screening, smart-money flow, and bot detection in one call — rather than piecing together separate on-chain data APIs. Especially valuable when fail-closed behavior and auto-refund on failure are required for a production trading agent.

## Known failure modes

- Token mint address not found or invalid — verdict unavailable
- Upstream data provider timeout — fail-closed with auto-refund triggered
- Insufficient on-chain data for new/illiquid token — degraded verdict or no verdict
- Payment failure — endpoint returns 402 without processing
- Malformed request body — 400 error with schema validation message

## How this service works

One-call ENTER/CAUTION/AVOID entry verdict for a Solana token mint: full token-check safety screen plus smart-money 24h/7d/30d netflow, ring/bot trader context, and tape-freshness honesty. Fail-closed critical path with auto-refund on failure.

## Output

A structured verdict containing: a top-level ENTER/CAUTION/AVOID recommendation, token-check safety screening results, smart-money net inflow/outflow broken down by 24h, 7d, and 30d windows, ring and bot trader prevalence context, and a tape-freshness honesty signal. Auto-refund is issued on failure (fail-closed).

## 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-entry-verdict-75d1f1ba/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)
