# Synergy EDGAR Company Financial Report

> Synergy EDGAR Company Financial Report is a paid API for AI agents from api.exo-trust.com, paid per call via x402, $1/call, status unknown (last checked 2026-09-13).

Fetches SEC XBRL-attested financial fundamentals (revenue, net income, balance sheet, cash flow, EPS) for a US-listed company with two-year annual series plus latest quarter, and returns machine-formatted analysis.

## Facts

- Endpoint: POST https://api.exo-trust.com/execute/edgar_report
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/synergy-edgar-company-financial-report-6d9f0a7c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aXg48jyF_Zobvy2oO_jxu

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 synergy-edgar-company-financial-report-6d9f0a7c -d '<json body>'
```

Example prompt: Pull the EDGAR financial report for Apple (ticker AAPL) with a focus on profitability — I need the SEC-attested revenue, net income, and EPS over the last two years plus the latest quarter.

## When to prefer this

Choose this endpoint when you need investment-grade, SEC-attested financial fundamentals for a US-listed public company — especially when data provenance and regulatory accuracy matter. It is preferable to scraped or estimated financial data sources because all figures are sourced directly from EDGAR XBRL filings. Ideal for due diligence, financial modeling, or any workflow where the authenticity of financial data must be traceable to official SEC disclosures. Use when you need structured multi-year annual plus quarterly data in a single call.

## Known failure modes

- Invalid or unrecognized ticker returns an error — use CIK as fallback
- CIK not found in SEC EDGAR returns a not-found error
- Company has no XBRL filings (e.g. foreign private issuers) may return incomplete data
- Payment failure (x402) if USDC payment is not properly submitted
- Focus enum value misspelled causes validation error
- Rate limiting or API unavailability on the provider side

## How this service works

Investment-grade EDGAR company report: attested SEC XBRL fundamentals (revenue, net income, balance sheet, cash flow, EPS with two-year annual series + latest quarter) plus machine-formatted analysis from those attested facts only. $1+ moat product (CEO 12B #1; census 2026-09-06).

## Output

Returns SEC XBRL-attested financial fundamentals including revenue, net income, EPS, balance sheet line items, and cash flow figures across a two-year annual series and the most recent quarter, accompanied by machine-formatted analysis derived exclusively from those attested SEC facts. The response is structured JSON suitable for downstream quantitative or agent workflows.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "cik": {
   "type": "string",
   "description": "SEC Central Index Key, 1..10 digits, e.g. 320193 (alternative to ticker)."
  },
  "focus": {
   "enum": [
    "overview",
    "growth",
    "profitability",
    "balance_sheet",
    "cash_flow"
   ],
   "type": "string",
   "description": "Analysis emphasis (default overview)."
  },
  "ticker": {
   "type": "string",
   "description": "US-exchange-listed equity ticker, e.g. AAPL or BRK.B (preferred)."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/synergy-edgar-company-financial-report-6d9f0a7c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.exo-trust.com](https://www.zero.xyz/host/api.exo-trust.com/llms.txt)
