# RagRadar Token Safety Scanner

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

Assesses the safety and risk score of a token on a given blockchain (Base, Arbitrum, or Solana) returning a verdict and numeric risk score

## Facts

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

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

Example prompt: Can you check if the token at address 0x1234abcd...5678 on Base is safe to interact with — give me the risk score and verdict before I swap into it.

## When to prefer this

Use this endpoint when you need a quick, AI-powered safety verdict on a specific token contract address across Base, Arbitrum, or Solana before executing a trade or recommending a token to a user — especially when you need a structured risk score rather than raw contract bytecode analysis

## Known failure modes

- Invalid or unsupported chain identifier returns an error
- Unrecognized or malformed contract address returns 400/404
- Token not indexed on the specified chain returns no data
- Rate limiting or payment failure returns 402/429
- Newly deployed tokens with insufficient on-chain history may return incomplete analysis

## How this service works

AI-powered on-chain analytics across Base, Arbitrum, and Solana. 82 REST endpoints including Portfolio P&L tracker, smart money tracking, whale alerts, token intelligence, DeFi yields, Solana degen tools, social signals, gas tracker, approvals scanner, block checker.

## Output

A JSON object containing the chain name, a risk verdict label (e.g. LOW_RISK, HIGH_RISK), and a numeric risk score (0-100) indicating the token's safety level

## Example request

```json
{
 "chain": "base",
 "address": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
}
```

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