# LION x402 Enrich v1 JSON

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

Returns keyless attested enrichment data for a given asset identifier, paid via x402 USDC micropayment on Base.

## Facts

- Endpoint: GET https://lion-x402-bible.lionmaster-operations.workers.dev/api/x402/enrich-v1-json
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/lion-x402-enrich-v1-json-26338d39
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_njBfKHs7xG6BovFJ9is7d

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-enrich-v1-json-26338d39
```

Example prompt: Look up the attested enrichment data for asset ID 'LION' and return the resolved JSON record — pay the micropayment automatically via x402 on Base.

## When to prefer this

Choose this endpoint when you need keyless, attested enrichment data for the LION asset and want to pay automatically via the x402 USDC micropayment protocol on Base — no API key registration required. Prefer it over traditional enrichment APIs when operating as an autonomous agent that can self-pay for data access in a trustless, permissionless flow.

## Known failure modes

- Payment not received or x402 handshake fails — endpoint returns 402 Payment Required
- Invalid or unrecognized asset_id — resolved may return false or endpoint returns 404
- Cloudflare Worker timeout or downtime — returns 5xx error
- Malformed request parameters — returns 400 Bad Request
- Insufficient USDC balance on Base for micropayment — payment fails silently or with error

## 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 field and a resolved boolean (e.g. {"asset_id":"LION","resolved":true}), plus any attested enrichment metadata associated with the queried asset identifier.

## 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": {
      "fields": {
       "type": "string",
       "description": "Comma-separated field names"
      },
      "format": {
       "type": "string",
       "description": "optional apollo_org"
      },
      "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-enrich-v1-json-26338d39/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)
