# AgentFiling SEC EDGAR Earnings Intelligence

> AgentFiling SEC EDGAR Earnings Intelligence is a paid API for AI agents from filing.memoryapi.org, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Retrieves SEC EDGAR earnings data (revenues, YoY growth, filing history) for any public company by querying EDGAR financial concepts

## Facts

- Endpoint: GET https://filing.memoryapi.org/x402/filing/earnings
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentfiling-sec-edgar-earnings-intelligence-08b8944c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uGqyyWOTsTYELdpssnJNE

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 agentfiling-sec-edgar-earnings-intelligence-08b8944c
```

Example prompt: What did Apple report as total revenues in its most recent SEC EDGAR filing — give me the latest figure, the form type, the period end date, and the year-over-year growth percentage.

## When to prefer this

Choose this endpoint when you need structured, machine-readable earnings and revenue data sourced directly from SEC EDGAR filings for any US public company, especially when you need YoY growth calculations and filing metadata (form type, period end) in a single call. Prefer this over generic web search when authoritative, regulation-grade financial figures are required.

## Known failure modes

- Company not found in EDGAR — returns success:false or empty result
- Invalid ticker or CIK — unrecognized company identifier
- No earnings data available for the requested concept or period
- Payment failure — x402 USDC payment on Base mainnet not processed
- Rate limiting or quota exceeded
- Network timeout reaching SEC EDGAR data source

## How this service works

x402-powered SEC EDGAR filing intelligence. Get insider trading, earnings data, material events, and recent filings for any public company. Pay per query in USDC on Base mainnet.

## Output

Returns the company name, the financial concept queried (e.g. Revenues), the latest filing details (form type such as 10-K, the reported value in USD, and the period end date), year-over-year growth percentage, and optionally a history array of prior periods.

## Example request

```json
{
 "unit": "USD",
 "ticker": "AAPL",
 "concept": "revenue"
}
```

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "properties": {
    "method": {
     "type": "string",
     "enum": [
      "GET"
     ]
    }
   },
   "required": [
    "method"
   ]
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "example": {
  "latest": {
   "form": "10-K",
   "value": 391035000000,
   "period_end": "2025-09-30"
  },
  "company": "Apple Inc.",
  "concept": "Revenues",
  "history": [],
  "success": true,
  "yoy_growth_pct": 2
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentfiling-sec-edgar-earnings-intelligence-08b8944c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from filing.memoryapi.org](https://www.zero.xyz/host/filing.memoryapi.org/llms.txt)
