# LION x402 Compliance Bundle (JSON)

> LION x402 Compliance Bundle (JSON) is a paid API for AI agents from lion-x402-bible.lionmaster-operations.workers.dev, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Returns a keyless attested compliance data bundle in JSON format for autonomous agents, paid per-call via x402 USDC on Base.

## Facts

- Endpoint: GET https://lion-x402-bible.lionmaster-operations.workers.dev/api/x402/compliance-bundle-json
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/lion-x402-compliance-bundle-json-7704b570
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZfHaaSShyknzTijs1imGl

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-compliance-bundle-json-7704b570
```

Example prompt: Fetch me the LION compliance bundle JSON — I need the attested compliance data for my autonomous agent pipeline and I'll pay the $0.05 USDC fee via x402 on Base.

## When to prefer this

Choose this endpoint when your autonomous agent needs attested compliance data without managing API keys, and you want to pay per-call via x402 USDC micropayments on Base. It is best suited for agent pipelines that require keyless, on-demand compliance attestation in JSON format with minimal setup overhead.

## Known failure modes

- Payment not included or insufficient USDC — returns HTTP 402 requiring x402 payment
- Invalid or expired x402 payment token — authentication/payment rejected
- Service unavailable on Cloudflare Workers edge — 503 or timeout
- Compliance bundle not resolved (resolved: false) — data may be stale or unavailable
- Malformed request headers — 400 bad request

## How this service works

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

## Output

Returns a JSON object containing a compliance bundle with at minimum an asset_id (e.g. 'LION_COMPLIANCE_BUNDLE_001') and a resolved boolean flag indicating whether the attestation resolved successfully, plus any additional attested compliance data fields in the bundle.

## 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": [
      "address"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "Optional legal entity name for screening context"
      },
      "token": {
       "type": "string",
       "description": "Optional ERC-20 token address for risk indicators"
      },
      "domain": {
       "type": "string",
       "description": "Optional company domain for trust + firmographics"
      },
      "address": {
       "type": "string",
       "description": "EVM wallet address to OFAC SDN / sanctions screen"
      },
      "receipt": {
       "type": "string",
       "description": "Set to 1 for portable signed compliance receipt"
      }
     }
    }
   },
   "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_COMPLIANCE_BUNDLE_001",
  "resolved": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/lion-x402-compliance-bundle-json-7704b570/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)
