# SEC EDGAR Financial Data by Ticker

> SEC EDGAR Financial Data by Ticker is a paid API for AI agents from toolcall.click, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Returns key financial statement data (revenue, profit, EPS, assets, liabilities, equity, cash) for any US-listed company by ticker, sourced from official SEC EDGAR XBRL 10-K filings, with up to 5 years of history.

## Facts

- Endpoint: GET https://toolcall.click/t/sec/financials
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sec-edgar-financial-data-by-ticker-a8d7e95e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dpU-bP7lajH81Novocs-i

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-edgar-financial-data-by-ticker-a8d7e95e
```

Example prompt: Pull the latest SEC EDGAR financials for NVDA — I want revenue, net income, EPS, total assets and liabilities, and a few years of history if you can get it.

## When to prefer this

Use this endpoint when you need official, as-reported SEC 10-K financial data for a US-listed public company — not estimates or consensus figures. Ideal for fundamental analysis, financial modeling, compliance checks, or any use case requiring authoritative sourced numbers rather than aggregated or estimated data. Prefer over financial data APIs that blend estimates with actuals, or that lack multi-year history.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error
- Non-US-listed or OTC tickers may not have EDGAR XBRL data
- Company has not filed a 10-K (e.g. very new listing) so no data available
- EDGAR data lag: most recent quarter may not yet be reflected
- Payment failure via x402 returns 402 Payment Required

## How this service works

Key financials for any US-listed company by ticker, straight from SEC EDGAR XBRL filings: latest annual revenue, gross profit, operating and net income, total assets, liabilities, stockholders equity, cash and diluted EPS, plus up to 5 years of history for each. Official as-reported 10-K figures. Pass ticker=. JSON response. $0.03 USDC per call, pay via x402, no API key.

## Output

A JSON object containing the latest annual figures and up to 5 years of historical data for: revenue, gross profit, operating income, net income, total assets, total liabilities, stockholders equity, cash, and diluted EPS — all sourced directly from SEC EDGAR XBRL 10-K as-reported 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "description": "US-listed ticker symbol, e.g. AAPL"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "latest": {
   "revenue": 391035000000,
   "netIncome": 93736000000,
   "epsDiluted": 6.08,
   "totalAssets": 364980000000
  },
  "ticker": "AAPL",
  "company": "Apple Inc.",
  "latestFiscalYear": 2025
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sec-edgar-financial-data-by-ticker-a8d7e95e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from toolcall.click](https://www.zero.xyz/host/toolcall.click/llms.txt)
