# LION x402 Composite Bundle JSON

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

Returns a keyless attested composite data bundle for the LION asset, payable via x402 micropayment in USDC on Base.

## Facts

- Endpoint: GET https://lion-x402-bible.lionmaster-operations.workers.dev/api/x402/composite-bundle-json
- Price: $0.001/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-composite-bundle-json-125310bc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vVBG1Qp3q1Vi5-_xBr5UX

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-composite-bundle-json-125310bc
```

Example prompt: Fetch the LION composite data bundle from the LION x402 seller — pay the $0.001 USDC fee on Base and give me the attested JSON with the resolved asset info.

## When to prefer this

Choose this endpoint when an autonomous agent needs keyless, attested asset data for the LION asset and can pay $0.001 USDC per call via the x402 micropayment protocol on Base — ideal when avoiding traditional API key management and needing cryptographically attested, machine-readable JSON output.

## Known failure modes

- Payment not included or insufficient USDC: returns HTTP 402 Payment Required
- Invalid or expired x402 payment header: authentication rejected
- Cloudflare Worker timeout or downtime: 5xx error
- Malformed request missing required headers: 400 Bad Request
- Base network congestion causing payment verification delay

## How this service works

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

## Output

A JSON object containing the LION asset identifier (asset_id: 'LION') and a resolved boolean, along with additional attested composite data fields confirming the asset's status as provided by the LION x402 seller.

## 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",
     "properties": {
      "chain": {
       "type": "string"
      },
      "identifier": {
       "type": "string"
      }
     }
    }
   },
   "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-composite-bundle-json-125310bc/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)
