# true402 Solana Token Safety Check

> true402 Solana Token Safety Check is a paid API for AI agents from true402.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Checks the safety and risk profile of a Solana SPL token by its mint address

## Facts

- Endpoint: POST https://true402.dev/api/v1/solana/token-safety
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/true402-solana-token-safety-check-0d6882e1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kD9NdVLZwsSVGr9hBZgvj

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 true402-solana-token-safety-check-0d6882e1 -d '<json body>'
```

Example prompt: Can you check whether the Solana token with mint address EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v is safe to trade or if there are any red flags?

## When to prefer this

Use this endpoint when you need a quick, pay-per-call token safety check for Solana SPL tokens without committing to a subscription. Ideal for AI agents that need on-demand risk screening before executing DeFi trades or displaying token information to users. Prefer this over manual on-chain analysis when you need a structured safety verdict with minimal latency.

## Known failure modes

- Invalid or malformed base58 mint address returns an error
- Token mint address not found on Solana returns not-found error
- Unsupported chain value (non-Solana) returns validation error
- Payment failure via HTTP 402 if wallet balance is insufficient
- Network timeout or Solana RPC unavailability causing delayed response

## How this service works

The machine-native marketplace. Wallet = identity. Pay per call with HTTP 402.

## Output

Returns a safety assessment object for the given Solana SPL token mint address, likely including risk flags, safety scores, honeypot indicators, liquidity warnings, and other on-chain risk signals relevant to the token.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "token"
 ],
 "properties": {
  "chain": {
   "type": "string",
   "description": "Chain to check; only 'solana' is supported on this endpoint (default)"
  },
  "token": {
   "type": "string",
   "description": "SPL mint address (base58) on Solana"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "mint": {
   "type": "object",
   "description": "mintAuthority / freezeAuthority / decimals / supply / extensions"
  },
  "risk": {
   "type": "string"
  },
  "chain": {
   "type": "string"
  },
  "flags": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "score": {
   "type": "number"
  },
  "token": {
   "type": "string"
  },
  "program": {
   "type": "string",
   "description": "'spl-token' or 'token-2022'"
  },
  "liquidity": {
   "type": "object",
   "description": "USD depth across Solana pools; usd null = could not read"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/true402-solana-token-safety-check-0d6882e1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from true402.dev](https://www.zero.xyz/host/true402.dev/llms.txt)
