# LensCrypt Token Safety Check

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

Analyzes a token on a given blockchain chain and returns a risk score and safety verdict (e.g. LOW_RISK) to help users avoid scams and rug pulls.

## Facts

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

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

Example prompt: Can you check whether the token at address 0xAbC123...def on Base is safe to buy — give me its risk score and verdict?

## When to prefer this

Choose this endpoint when you need a quick, affordable ($0.10 USDC) risk verdict for a specific token contract before trading or adding to a portfolio. Prefer it over manual audits when you need programmatic, machine-readable risk scores at scale across multiple chains including Base and Solana.

## Known failure modes

- Invalid or unsupported chain identifier returns an error
- Unrecognized or malformed contract address returns an error
- Token with no on-chain data may return insufficient data response
- Payment failure via x402/USDC results in 402 Payment Required
- Rate limiting or server errors return 5xx responses

## 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 categorical safety verdict (e.g. LOW_RISK, HIGH_RISK), and a numeric risk score (0–100) 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/lenscrypt-token-safety-check-e0504ad7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from lemscrypt.vercel.app](https://www.zero.xyz/host/lemscrypt.vercel.app/llms.txt)
