# SEC XBRL Financial Fundamentals Lookup

> SEC XBRL Financial Fundamentals Lookup is a paid API for AI agents from x402-deployer.x402-deployer.workers.dev, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns structured financial line items (revenue, net income, EPS, total assets, cash, etc.) from SEC XBRL filings for any US-listed ticker

## Facts

- Endpoint: POST https://x402-deployer.x402-deployer.workers.dev/xbrl-financials
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-deployer-x402-deployer-workers-dev-64a7e65d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nMhaZ2-FR6AkKhpe0psvC

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 x402-deployer-x402-deployer-workers-dev-64a7e65d -d '<json body>'
```

Example prompt: Pull the SEC XBRL financial fundamentals for MSFT — I need revenue, net income, EPS, total assets, and cash from their latest filing.

## When to prefer this

Choose this endpoint when you need structured, machine-readable financial fundamentals (income statement, balance sheet metrics) for any US-listed public company directly from authoritative SEC XBRL filings, especially as a free/low-cost alternative to Bloomberg or paid financial data providers. Ideal for fundamental analysis, stock screening, or enriching financial research workflows.

## Known failure modes

- Ticker not found or not US-listed — returns error indicating invalid or unrecognized symbol
- SEC XBRL data not available for the company (e.g. very small filer, missing XBRL tags) — partial or empty response
- Payment not processed — x402 payment required error
- Rate limiting or upstream SEC EDGAR unavailability — service timeout or error response
- Malformed request body — missing or invalid ticker parameter returns validation error

## How this service works

SEC XBRL financials. Returns structured financial line items (revenue, net income, EPS, total assets, cash, etc.) for a US-listed ticker. Federal public XBRL data — Bloomberg-killer for fundamentals.

## Output

A structured JSON object containing key financial line items for the requested ticker, including revenue, net income, EPS, total assets, cash, and other XBRL-tagged fundamentals sourced from SEC EDGAR public filings.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {
      "cik": {
       "type": "string",
       "description": "SEC CIK (zero-padded or numeric, e.g. '0000320193'). Use when ticker is ambiguous or unavailable."
      },
      "unit": {
       "enum": [
        "USD",
        "USD/shares",
        "shares",
        "any"
       ],
       "type": "string",
       "description": "Filter values to one unit. Default 'any'."
      },
      "ticker": {
       "type": "string",
       "description": "US-listed ticker (e.g. 'AAPL', 'MSFT'). Either ticker or cik is required."
      },
      "fy_only": {
       "type": "boolean",
       "description": "If true, only fiscal-year (10-K) values are returned, skipping quarterly 10-Q data. Default false."
      },
      "metrics": {
       "type": "array",
       "items": {
        "type": "string"
       },
       "description": "Aliases of financial metrics to return, e.g. ['revenue', 'net_income', 'eps_diluted', 'total_assets', 'cash']. See available_metric_aliases in response. Default: a curated set."
      },
      "limit_per_metric": {
       "type": "number",
       "description": "Max datapoints returned per metric. 1-50. Default 10 (most-recent-first)."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "cik": {
       "type": "string"
      },
      "series": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "unit": {
          "type": "string"
         },
         "label": {
          "type": "string"
         },
         "metric": {
          "type": "string"
         },
         "description": {
          "type": "string"
         },
         "xbrl_concept": {
          "type": "string"
         }
        }
       }
      },
      "source": {
       "type
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-deployer-x402-deployer-workers-dev-64a7e65d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-deployer.x402-deployer.workers.dev](https://www.zero.xyz/host/x402-deployer.x402-deployer.workers.dev/llms.txt)
