# RagRadar Token Safety Scanner

> RagRadar Token Safety Scanner is a paid API for AI agents from ragradar.space, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-12).

Analyzes a token contract address on a specified blockchain and returns a risk score and safety verdict (e.g. LOW_RISK) indicating whether the token is safe to interact with.

## Facts

- Endpoint: GET https://ragradar.space/api/token-safety/%7Bchain%7D/%7Baddress%7D
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-12
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ragradar-token-safety-scanner-f1692ce5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_p67lwGzwB3edU2ZK8uUOH

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-scanner-f1692ce5
```

Example prompt: Can you check whether this token is safe before I buy — it's at address 0x1234abcd5678ef on Base? I want to see the risk score and verdict.

## When to prefer this

Use this endpoint when an AI agent or user wants a quick, scored safety verdict for a specific token contract address on Base, Arbitrum, or Solana before trading, swapping, or approving a token. Prefer this over generic block explorers when you need a structured risk score with a clear verdict label rather than raw on-chain data.

## Known failure modes

- Invalid or unsupported chain identifier returns an error
- Malformed or non-existent contract address returns an error or empty result
- Token not yet indexed may return insufficient data
- Payment not fulfilled (402) if x402 payment header is missing or rejected
- Rate limiting or service unavailability on upstream chain data

## How this service works

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

## Output

Returns a JSON object with the chain identifier, a safety verdict label (e.g. LOW_RISK, HIGH_RISK), and a numeric risk score (0-100) indicating how dangerous or trustworthy the token contract is.

## 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-scanner-f1692ce5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ragradar.space](https://www.zero.xyz/host/ragradar.space/llms.txt)
