# RagRadar Token Safety Check

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

Returns a risk score and safety verdict for a given token contract address on a specified blockchain chain

## Facts

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

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-ef320960
```

Example prompt: Can you check the safety of token contract 0x1234abcd... on Base and tell me if it's a rug pull risk?

## When to prefer this

Use this endpoint when you need a quick, on-chain safety assessment for a specific token contract before trading, swapping, or recommending it — especially on Base, Arbitrum, or Solana. Prefer this over general blockchain explorers when you need a structured risk score suitable for automated agent decision-making.

## Known failure modes

- Invalid or malformed contract address returns an error
- Unsupported chain identifier returns a 400 or error response
- Contract address not found on the specified chain returns no data
- Rate limit or payment failure (x402) blocks the request
- Network timeout on backup domain

## How this service works

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

## Output

A JSON object containing the chain name, a safety verdict (e.g. LOW_RISK), and a numeric risk score (0-100, higher = safer) for the queried token contract address.

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