# StableFinance Earnings Filings Feed

> StableFinance Earnings Filings Feed is a paid API for AI agents from stablefinance.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns the most recent earnings filings for a given stock ticker, or a cross-ticker earnings feed if no ticker is specified.

## Facts

- Endpoint: GET https://stablefinance.dev/api/earnings
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablefinance-dev-32268dd7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xf-fqap60Z1_3rAesBXnG

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 stablefinance-dev-32268dd7
```

Example prompt: Pull the 5 most recent earnings filings for NVDA from StableFinance so I can see how their quarterly results have been trending.

## When to prefer this

Use this endpoint when you need the most recent earnings filings for a specific publicly traded company by ticker symbol, or when you want a broad cross-ticker earnings feed. Prefer this over the full financials endpoint when you specifically need earnings filing records rather than full income/balance sheet data, and over the SEC filings index when you want earnings-specific results without manual filtering.

## Known failure modes

- Invalid or unknown ticker symbol returns empty or error response
- Limit parameter out of range (must be 1–100) causes validation error
- No filings available for a thinly-traded or recently-listed company
- Payment not processed (x402 protocol failure) blocks the response
- Rate limiting or quota exceeded returns 429 error

## How this service works

Most-recent earnings filings for a ticker. Omit ticker for the cross-ticker feed.

## Output

Returns a JSON object containing an 'earnings' array of the most recent earnings filing records for the specified ticker. Each item in the array represents an individual earnings filing. If no ticker is provided, returns a cross-ticker feed of recent earnings filings up to the specified limit (max 100).

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "limit": 5,
   "ticker": "AAPL"
  }
 }
}
```

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "properties": {
      "limit": {
       "type": "integer",
       "maximum": 100,
       "minimum": 1
      },
      "ticker": {
       "type": "string",
       "minLength": 1
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "earnings"
     ],
     "properties": {
      "earnings": {
       "type": "array",
       "items": {}
      }
     },
     "additionalProperties": false
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "earnings": [
   {
    "ticker": "AAPL",
    "filing_url": "https://www.sec.gov/Archives/edgar/data/320193/000032019325000079/0000320193-25-000079-index.htm",
    "filing_date": "2025-10-30",
    "source_type": "10-K",
    "filing_window": "AFTER_HOURS",
    "fiscal_period": "FY2025",
    "report_period": "2025-09-27"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablefinance-dev-32268dd7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stablefinance.dev](https://www.zero.xyz/host/stablefinance.dev/llms.txt)
