# LION x402 SEC Financials JSON

> LION x402 SEC Financials JSON 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-14).

Returns SEC financial data for a given asset (LION) as attested JSON, paid per-call via x402 micropayment on Base USDC.

## Facts

- Endpoint: GET https://lion-x402-bible.lionmaster-operations.workers.dev/api/x402/sec-financials-json
- Price: $0.005/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-sec-financials-json-ec6f7cb8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZebmxTR8sqGmsPyHh5Jk4

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-sec-financials-json-ec6f7cb8
```

Example prompt: Can you pull the SEC financial data for asset LION — the attested JSON version — using the x402 micropayment endpoint?

## When to prefer this

Choose this endpoint when you need machine-readable, attested SEC financial data for the LION asset and can pay per-call in USDC on Base via the x402 protocol. It is ideal for autonomous agents that require keyless, trustless data access without OAuth or API key management, especially in DeFi or compliance automation workflows.

## Known failure modes

- Payment not authorized or insufficient USDC balance — 402 Payment Required returned
- Asset ID not found or not supported — resolved:false in response
- Cloudflare Worker timeout or upstream SEC data source unavailable — 5xx error
- Invalid request format — 400 Bad Request
- Rate limiting on the worker — 429 Too Many Requests

## 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 SEC financial data was successfully retrieved, along with the attested financial payload. Payment is deducted as $0.005 USDC on Base via x402 per call.

## 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": {
      "cik": {
       "type": "string"
      },
      "ticker": {
       "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-sec-financials-json-ec6f7cb8/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)
