# LION SEC Financials JSON

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

Returns SEC XBRL financial data (revenue, net income, total assets) and recent filing metadata for a US public company, paid per-call via x402/USDC with no API key required.

## Facts

- Endpoint: GET https://lion-x402.lionmaster-operations.workers.dev/api/x402/sec-financials-json
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/lion-sec-financials-json-24907366
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yjhtya2-ADnZcCR7-ZM7E

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

Example prompt: Pull the latest SEC XBRL financials for Apple — I want their revenue, net income, and total assets, plus any recent 10-K filing info.

## When to prefer this

Use this endpoint when you need structured, machine-readable SEC financial data (revenue, net income, total assets) and recent filing metadata for a US public company, without going through a traditional API key signup. It is ideal for AI agents operating autonomously that can handle x402 micropayments in USDC and need on-demand per-call access to fundamental financial data derived from SEC EDGAR XBRL submissions.

## Known failure modes

- Company not found or not a US public company — resolved: false returned
- Payment not provided or insufficient USDC — HTTP 402 response requiring x402 payment
- Invalid ticker or CIK — empty or error response
- SEC XBRL data unavailable for the requested company — partial data with lower confidence score
- Network or worker timeout — transient 5xx error

## How this service works

Keyless off-chain and on-chain data for AI agents. No API key, no signup - payment is the only gate. Pay-per-call in USDC on Base via x402.

## Output

A JSON object containing company metadata (CIK, SIC, ticker, exchanges, fiscal year end, state of incorporation), key financials (revenue, net income, total assets in USD as of the most recent period), a list of recent SEC filings (form type, accession number, filing date, primary document), data source attribution, confidence score, and an as-of timestamp.

## 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": {
  "as_of": "2026-06-03T00:00:00.000Z",
  "company": {
   "cik": "0000320193",
   "sic": "3571",
   "name": "Apple Inc.",
   "ticker": "AAPL",
   "exchanges": [
    "Nasdaq"
   ],
   "fiscal_year_end": "0928",
   "sic_description": "Electronic Computers",
   "state_of_incorporation": "CA"
  },
  "asset_id": "LION_SEC_FINANCIALS_001",
  "resolved": true,
  "is_public": true,
  "confidence": 0.9,
  "financials": {
   "as_of": "2025-09-27",
   "source": "SEC XBRL (us-gaap)",
   "revenue_usd": 391035000000,
   "net_income_usd": 93736000000,
   "total_assets_usd": 364980000000
  },
  "recent_filings": [
   {
    "form": "10-K",
    "accession": "0000320193-25-000001",
    "filing_date": "2025-11-01",
    "primary_document": "aapl-20250927.htm"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/lion-sec-financials-json-24907366/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from lion-x402.lionmaster-operations.workers.dev](https://www.zero.xyz/host/lion-x402.lionmaster-operations.workers.dev/llms.txt)
