# TrustDex Token Safety Verdict

> TrustDex Token Safety Verdict is a paid API for AI agents from trustdex.app, paid per call via x402, $0.01/call, status down (last checked 2026-09-15).

Returns an A+–F safety grade, numeric score, and risk signals for a token by blockchain network and contract address

## Facts

- Endpoint: GET https://trustdex.app/api/v1/x402/token-risk/solana/So11111111111111111111111111111111111111112
- Price: $0.01/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/trustdex-token-safety-verdict-bbefe591
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xF1HlrmUZT2Bg5lSAsLwI

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 trustdex-token-safety-verdict-bbefe591
```

Example prompt: Can you check the TrustDex safety grade for the Solana token at address So11111111111111111111111111111111111111112 — I want to know the A–F grade, score, and any risk signals before I trade it.

## When to prefer this

Use this endpoint when you need a fast, actionable safety grade for a specific token on a supported chain (Solana, Ethereum, BSC, Base, Arbitrum, Optimism, Polygon, Avalanche) before executing a trade or adding it to a portfolio. Prefer it over manual on-chain inspection when you need a normalized A+–F verdict with aggregated signals in a single API call. It is especially useful in agent workflows that need to gate token interactions on a minimum safety threshold.

## Known failure modes

- Invalid or unrecognized chain ID returns an error
- Malformed or non-existent contract address returns not-found or validation error
- Token too new or with insufficient on-chain data may return incomplete signals
- Payment failure (x402) blocks access if USDC is not available
- Rate limiting if the endpoint is called too frequently without payment

## How this service works

TrustDex token safety verdict (A+–F grade, score, signals) by chain + address

## Output

The agent receives a structured safety verdict containing an A+–F letter grade, a numeric risk score, and a set of risk signals (e.g. mint authority state, holder concentration, dangerous token extensions) for the specified token on the specified chain.

## 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": [
      "chain",
      "address"
     ],
     "properties": {
      "chain": {
       "type": "string",
       "description": "Chain id: solana, ethereum, bsc, base, arbitrum, optimism, polygon, avalanche"
      },
      "address": {
       "type": "string",
       "description": "Token contract address (base58 mint on Solana, 0x… on EVM)"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/trustdex-token-safety-verdict-bbefe591/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from trustdex.app](https://www.zero.xyz/host/trustdex.app/llms.txt)
