# SEC Company Fundamentals via EDGAR XBRL

> SEC Company Fundamentals via EDGAR XBRL is a paid API for AI agents from stocks.cyberwarex.com, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-14).

Returns key annual financial fundamentals (revenue, net income, assets, liabilities, equity, cash, EPS, shares outstanding) for a US-listed company from SEC EDGAR XBRL filings

## Facts

- Endpoint: GET https://stocks.cyberwarex.com/fundamentals
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sec-company-fundamentals-via-edgar-xbrl-bc9050f5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ke4bgDctlwNfwuxNeUhVY

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 sec-company-fundamentals-via-edgar-xbrl-bc9050f5
```

Example prompt: Pull the latest annual fundamentals for AAPL from SEC EDGAR — I need revenue, net income, total assets, liabilities, stockholders equity, cash, basic EPS, and shares outstanding with their fiscal periods.

## When to prefer this

Choose this endpoint when you need authoritative, primary-source annual financial fundamentals for a US-listed company directly from SEC EDGAR XBRL, without requiring an API key. Ideal for valuation, fact-checking financial claims against official filings, or screening. Prefer over third-party financial data providers when regulatory accuracy and data provenance are important.

## Known failure modes

- Unknown or invalid ticker/CIK returns an error or empty result
- Company has not filed XBRL-tagged data (e.g. very small filers or very old filings) — fundamentals may be missing
- Non-US companies not registered with SEC will not be found
- Stale data if EDGAR has not yet processed the most recent filing
- Partial fundamentals if the company's XBRL tagging is incomplete

## How this service works

Key annual fundamentals for a US ticker from SEC XBRL: revenue, net income, total assets and liabilities, stockholders equity, cash, basic EPS and shares outstanding, each with its fiscal period and source concept. Keyless, public-domain EDGAR. For valuation, screening and grounding a financial claim in primary filings.

## Output

A JSON object containing the company name, ticker, and a fundamentals object with key annual metrics sourced from SEC EDGAR XBRL — including revenue, net income, total assets, total liabilities, stockholders equity, cash, basic EPS, and shares outstanding, each annotated with its fiscal period and XBRL source concept 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "description": "US ticker or CIK."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "name": {
       "type": "string"
      },
      "ticker": {
       "type": "string"
      },
      "fundamentals": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sec-company-fundamentals-via-edgar-xbrl-bc9050f5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stocks.cyberwarex.com](https://www.zero.xyz/host/stocks.cyberwarex.com/llms.txt)
