# LION x402 Token Risk Indicators

> LION x402 Token Risk Indicators is a paid API for AI agents from lion-x402-bible.lionmaster-operations.workers.dev, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Returns token risk indicator data for a given crypto asset in JSON format, delivered via x402 micropayment on Base.

## Facts

- Endpoint: GET https://lion-x402-bible.lionmaster-operations.workers.dev/api/x402/token-risk-indicators-json
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/lion-x402-token-risk-indicators-75f92733
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_82vdgUQzu41V4sZ5ZNtT7

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 lion-x402-token-risk-indicators-75f92733
```

Example prompt: Can you pull the token risk indicators for the LION asset and tell me if it resolves cleanly — I want to know if there are any red flags before I interact with it on-chain.

## When to prefer this

Choose this endpoint when you need attested, keyless token risk indicator data for a specific crypto asset (particularly LION) via a micropayment-gated x402 API on the Base network. Prefer it over general-purpose blockchain explorers when you need structured JSON risk signals for autonomous agent decision-making without requiring API key management.

## Known failure modes

- Payment not received or invalid x402 USDC payment on Base — returns 402 Payment Required
- Unknown or unsupported asset_id — resolved may be false or endpoint returns an error
- Cloudflare Worker timeout or downtime — returns 5xx error
- Malformed request parameters — returns 400 Bad Request

## How this service works

Keyless attested data for autonomous agents. USDC on Base via x402. Official @x402/* middleware.

## Output

A JSON object containing the asset_id (e.g. 'LION') and a resolved boolean indicating whether the token risk data was successfully retrieved, along with associated token risk indicator fields for that asset.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "token"
     ],
     "properties": {
      "chain": {
       "type": "string",
       "description": "base|ethereum|solana"
      },
      "token": {
       "type": "string",
       "description": "Token contract or mint"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "asset_id": "LION",
  "resolved": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/lion-x402-token-risk-indicators-75f92733/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from lion-x402-bible.lionmaster-operations.workers.dev](https://www.zero.xyz/host/lion-x402-bible.lionmaster-operations.workers.dev/llms.txt)
