# LensCrypt Token Safety Check

> LensCrypt Token Safety Check is a paid API for AI agents from lenscrypt.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-08).

Analyzes a token contract on a specified blockchain and returns a risk score and verdict indicating how safe or dangerous the token is

## Facts

- Endpoint: GET https://lenscrypt.vercel.app/api/token-safety/%7Bchain%7D/%7Baddress%7D
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-08
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/lenscrypt-token-safety-check-41c45cac
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iNdnhuhL5X5UuDE4v0GYy

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 lenscrypt-token-safety-check-41c45cac
```

Example prompt: Is the token at address 0x1234abcd...5678 on Base safe to buy? Give me its risk verdict and score.

## When to prefer this

Use this endpoint when you need a quick, paid, on-demand token safety score for a specific contract address on a supported chain, especially when integrated into a DeFi trading or research workflow that already uses the x402 payment protocol on Base. Prefer this over manual audits or free tools when you need a structured risk verdict programmatically.

## Known failure modes

- Invalid or unsupported chain identifier returns an error
- Token contract address not found on the specified chain returns a 404 or empty result
- Malformed address string causes a validation error
- Rate limiting or payment failure via x402 protocol returns 402 Payment Required
- Network timeout for slow on-chain data lookups

## How this service works

81 paid REST endpoints covering wallet analytics, DeFi yields, token safety, smart money tracking, whale alerts, sniper detection, GMX perps, Solana tools, protocol stats, gas tracking, DEX quotes, NFT analytics, social signals, and 8 AI-powered endpoints (MiMo V2.5). Pay USDC via x402 protocol on Base.

## Output

Returns a JSON object with the chain name, a risk verdict label (e.g. LOW_RISK, HIGH_RISK), and a numeric risk score (0-100) indicating how safe the token contract is, where higher scores suggest lower risk.

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