# LION x402 Enrichment Transaction Bundle

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

Returns a keyless attested enrichment transaction bundle (JSON) 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/enrichment-tx-bundle-json
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/lion-x402-enrichment-transaction-bundle-d2f1b8d6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mEGb8a3ITymvHR2ZaMvC1

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-enrichment-transaction-bundle-d2f1b8d6
```

Example prompt: Fetch the attested LION enrichment transaction bundle using x402 — I need the resolved asset data for LION paid in USDC on Base.

## When to prefer this

Choose this endpoint when you specifically need attested, keyless enrichment data for the LION asset via the x402 micropayment protocol on Base (USDC). Prefer it over generic blockchain data APIs when you require the x402 payment flow and the official LION attested bundle format for autonomous agent pipelines.

## Known failure modes

- Payment not included or insufficient USDC — endpoint returns 402 Payment Required
- Invalid x402 payment header format — authentication or payment parsing fails
- Asset not resolvable at query time — resolved: false in response
- Cloudflare Worker timeout or upstream attestation service unavailable — 5xx error
- Network error on Base chain during payment settlement

## 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 enrichment transaction bundle, including the asset_id field ('LION') and a resolved boolean indicating whether the asset data was successfully attested and resolved.

## 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": [
      "identifier"
     ],
     "properties": {
      "tx": {
       "type": "string",
       "description": "Optional Base tx hash"
      },
      "identifier": {
       "type": "string",
       "description": "Company or org name"
      }
     }
    }
   },
   "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-enrichment-transaction-bundle-d2f1b8d6/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)
