# EDGAR Financial Snapshot by Ticker or CIK

> EDGAR Financial Snapshot by Ticker or CIK is a paid API for AI agents from edgar.openverbs.com, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-13).

Returns a comprehensive one-call financial snapshot of a US public company from SEC XBRL filings, including revenue, income, EPS, assets, liabilities, equity, cash, and shares outstanding.

## Facts

- Endpoint: POST https://edgar.openverbs.com/v1/financials
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/edgar-financial-snapshot-by-ticker-or-cik-b89ae52a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DcMqBHV6FLIGpPdhYlf7g

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-financial-snapshot-by-ticker-or-cik-b89ae52a -d '<json body>'
```

Example prompt: Pull the latest annual financials for Tesla — I need revenue, net income, EPS, total assets, liabilities, and operating cash flow from their SEC XBRL filings. Use their ticker TSLA.

## When to prefer this

Use this endpoint when you need a broad financial overview of a US public company in a single call — covering income statement, balance sheet, and cash flow highlights — directly sourced from as-filed SEC XBRL data. Prefer this over individual concept lookups when you need multiple financial metrics at once, and over third-party financial data providers when SEC source fidelity and XBRL accuracy matter. Best for investment research, due diligence, portfolio screening, and financial comparison tasks.

## Known failure modes

- Unknown ticker or CIK returns found=false with no financial data
- Company exists in SEC but has no XBRL filings (e.g., older filings) may return empty or partial data
- Malformed or out-of-range CIK/ticker returns a validation error
- Network or upstream SEC EDGAR unavailability may cause timeouts
- Payment failure (x402 protocol) prevents the call from completing

## How this service works

One-call financial snapshot for a US public company (by CIK or ticker), from its as-filed SEC XBRL statements: revenue, cost of revenue, gross profit, operating income, net income, EPS (basic/diluted), total assets, total liabilities, stockholders equity, cash, operating cash flow and shares outstanding. Each line item gives the latest full fiscal year and the latest reported value. Unknown company returns found=false.

## Output

A structured JSON object containing 12+ financial line items for the company, each with the latest full fiscal year value and the latest reported value. Fields include revenue, cost of revenue, gross profit, operating income, net income, basic and diluted EPS, total assets, total liabilities, stockholders equity, cash, operating cash flow, and shares outstanding. If the company is not found, the response returns found=false.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "type": "object",
     "properties": {
      "cik": {
       "type": "string",
       "minLength": 1,
       "maxLength": 10,
       "description": "Central Index Key (1-10 digits). Provide this or `ticker`."
      },
      "ticker": {
       "type": "string",
       "minLength": 1,
       "maxLength": 10,
       "description": "Ticker symbol, e.g. \"AAPL\". Provide this or `cik`."
      }
     },
     "additionalProperties": false
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  }
 },
 "required": [
  "input"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/edgar-financial-snapshot-by-ticker-or-cik-b89ae52a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from edgar.openverbs.com](https://www.zero.xyz/host/edgar.openverbs.com/llms.txt)
