# AgentFund SEC Company Financials (XBRL)

> AgentFund SEC Company Financials (XBRL) is a paid API for AI agents from x402.agentfund.net, paid per call via x402, $0.015/call, status unknown (last checked 2026-09-15).

Retrieves structured XBRL financial statement data for US public companies from SEC EDGAR filings by ticker symbol or CIK

## Facts

- Endpoint: POST https://x402.agentfund.net/x402/edgar_financials
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentfund-sec-company-financials-xbrl-b1c6e584
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2MwtH1-sQQTEuHQiAdEoA

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 agentfund-sec-company-financials-xbrl-b1c6e584 -d '<json body>'
```

Example prompt: Pull the latest SEC EDGAR XBRL financial statements for Apple — ticker AAPL — so I can see their income statement, balance sheet, and cash flows.

## When to prefer this

Use this endpoint when you need structured, machine-readable XBRL financial statement data directly from official SEC EDGAR filings for a US-listed public company. Prefer this over scraping or third-party financial data providers when regulatory accuracy, official source attribution, or XBRL-formatted data is required. Best suited for fundamental analysis, financial modeling, and compliance-oriented workflows where SEC source data integrity matters.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty result
- Company not publicly listed with SEC EDGAR (foreign-only or private companies) returns no data
- CIK not found returns an error response
- EDGAR service unavailability causes a timeout or upstream error
- Newly listed companies may have incomplete or missing XBRL filings

## How this service works

SEC Company Financials (XBRL)

## Output

Structured XBRL financial data parsed from SEC EDGAR filings for the requested company, including financial statement line items such as revenues, net income, total assets, liabilities, equity, and cash flows, organized in a machine-readable JSON format.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "ticker": {
   "type": "string",
   "description": "Ticker (e.g. \"AAPL\") or CIK."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "cik": "0000320193",
  "entity": "Apple Inc.",
  "ticker": "AAPL",
  "concepts": {
   "revenue": {
    "tag": "RevenueFromContractWithCustomerExcludingAssessedTax",
    "label": "Revenue",
    "annual": {
     "end": "2025-09-27",
     "form": "10-K",
     "unit": "USD",
     "value": 416000000000
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentfund-sec-company-financials-xbrl-b1c6e584/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.agentfund.net](https://www.zero.xyz/host/x402.agentfund.net/llms.txt)
