# RagRadar Token Safety Check

> RagRadar Token Safety Check is a paid API for AI agents from ragdar.vercel.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Returns an on-chain risk assessment and safety verdict for a token address on a specified blockchain (Base, Arbitrum, or Solana)

## Facts

- Endpoint: GET https://ragdar.vercel.app/api/token-safety/%7Bchain%7D/%7Baddress%7D
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ragradar-token-safety-check-77f077c0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9P3VgJKDa8-FC58SxOxR9

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 ragradar-token-safety-check-77f077c0
```

Example prompt: Is this token safe to trade? Check the safety of address 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 on Base and give me the risk score and verdict.

## When to prefer this

Use this endpoint when an AI agent needs a quick, cheap ($0.02 USDC) on-chain safety verdict for a specific token address before recommending trades, swaps, or interactions on Base, Arbitrum, or Solana. Prefer this over general blockchain explorers when you need a structured risk score rather than raw contract data.

## Known failure modes

- Invalid or unrecognized chain identifier returns an error
- Malformed or non-existent contract address returns an error or null result
- Newly deployed contracts with insufficient on-chain history may return incomplete or low-confidence scores
- Payment failure via x402 micropayment protocol results in 402 response and no data returned

## How this service works

On-chain intelligence for AI agents. 70+ endpoints across Base, Arbitrum, Solana. x402 micropayments.

## Output

Returns a JSON object containing the chain name, a categorical risk verdict (e.g. LOW_RISK, HIGH_RISK), and a numeric risk score (0-100) indicating how safe or dangerous the token contract appears based on on-chain signals.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "chain": "base",
  "verdict": "LOW_RISK",
  "riskScore": 85
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ragradar-token-safety-check-77f077c0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ragdar.vercel.app](https://www.zero.xyz/host/ragdar.vercel.app/llms.txt)
