# Otto AI Earnings Flash

> Otto AI Earnings Flash is a paid API for AI agents from x402.ottoai.services, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns key earnings metrics from a company's latest SEC 8-K press release (Exhibit 99.1), including revenue, EPS, gross margin, and guidance, each with a verbatim source line.

## Facts

- Endpoint: GET https://x402.ottoai.services/earnings-flash
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/otto-ai-earnings-flash-5b0609a4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jWelNCo1D0bCj6yj8YtoW

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 otto-ai-earnings-flash-5b0609a4
```

Example prompt: Pull the latest earnings flash for NVDA — I want total revenue, EPS (both GAAP and non-GAAP), gross margin, and next-quarter guidance, each with the exact line from the press release.

## When to prefer this

Choose this endpoint when you need machine-readable, sourced earnings facts extracted directly from an SEC 8-K Exhibit 99.1 press release, particularly NVDA. It is preferable over general financial data APIs when you need verbatim source lines for auditability, GAAP vs non-GAAP labeling, and segment-level revenue alongside guidance — and when you need to be certain no fabricated or pre-release numbers are returned.

## Known failure modes

- Earnings release not yet published — endpoint refuses honestly rather than returning stale or estimated data
- Unsupported ticker (POC is NVDA only) — other tickers may return an error or unsupported response
- Network or upstream SEC parsing failure — may result in a 5xx error
- Malformed ticker query parameter — returns validation error

## How this service works

Agent-native earnings facts: when a company reports, get the numbers that move the stock — total & segment revenue, EPS and gross margin (GAAP and non-GAAP, always labeled), next-quarter guidance — each with its source line. Figures go live from the wire within minutes of the release; the SEC 8-K exhibit version supersedes them, and every response names its source document. Refuses honestly until the release is out; never advice.

## Output

A structured JSON response with status, data, and meta fields. The data payload contains key earnings figures — total revenue, segment revenue breakdowns, GAAP and non-GAAP EPS, GAAP and non-GAAP gross margin, and next-quarter guidance — each annotated with its verbatim source line from the SEC 8-K Exhibit 99.1. Meta includes a generatedAt freshness timestamp. Returns an honest refusal if the earnings release has not yet been published.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "description": "US-listed stock ticker (POC: NVDA)."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "status"
     ],
     "properties": {
      "data": {},
      "meta": {
       "type": "object"
      },
      "reason": {
       "type": "string",
       "description": "status=unavailable only; every >=400 is UNCHARGED"
      },
      "status": {
       "enum": [
        "success",
        "unavailable"
       ],
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/otto-ai-earnings-flash-5b0609a4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.ottoai.services](https://www.zero.xyz/host/x402.ottoai.services/llms.txt)
