# SEC EDGAR XBRL Financial Statements API

> SEC EDGAR XBRL Financial Statements API is a paid API for AI agents from edgar-x402.vercel.app, paid per call via x402, $0.005/call, status down (last checked 2026-09-15).

Retrieves annual revenue, net income, total assets, liabilities, equity, EPS, and operating income from SEC 10-K XBRL filings for the last 4 fiscal years

## Facts

- Endpoint: GET https://edgar-x402.vercel.app/edgar/financials
- Price: $0.005/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 3
- Tags: x402
- Canonical page: https://www.zero.xyz/c/edgar-x402-vercel-app-0cdc390a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_T6Q2bWb-L7xWnX9ORcXzK

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 edgar-x402-vercel-app-0cdc390a
```

Example prompt: Pull the last 4 years of annual financials from SEC EDGAR for AAPL — I need revenue, net income, total assets, liabilities, equity, EPS, and operating income from their 10-K filings.

## When to prefer this

Use this endpoint when you need structured, multi-year annual financial statement data (income statement, balance sheet) from official SEC 10-K filings via XBRL, particularly when you need standardized fields like revenue, net income, EPS, assets, liabilities, and equity without having to parse raw filings yourself

## Known failure modes

- Ticker not found or invalid — returns error indicating no matching company
- Company has no XBRL-tagged 10-K filings — returns empty or partial financial data
- CIK not found in EDGAR — returns not found error
- EDGAR upstream unavailable — returns 5xx or timeout
- Missing required ticker query parameter — returns 400 bad request

## How this service works

SEC EDGAR XBRL financial data. Returns annual revenue, net income, total assets, liabilities, equity, EPS, and operating income from 10-K filings. Last 4 fiscal years.

## Output

Returns structured XBRL financial data from 10-K filings including annual revenue, net income, total assets, total liabilities, stockholders equity, earnings per share (EPS), and operating income for the last 4 fiscal years for the requested company

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "ticker": "MSFT"
  }
 }
}
```

## 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": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "description": "Stock ticker or CIK number"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "ticker": {
       "type": "string"
      },
      "financials": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/edgar-x402-vercel-app-0cdc390a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from edgar-x402.vercel.app](https://www.zero.xyz/host/edgar-x402.vercel.app/llms.txt)
