# The Stall — Income Statements API

> The Stall — Income Statements API is a paid API for AI agents from the-stall.intuitek.ai, paid per call via x402, $0.035/call, status unknown (last checked 2026-09-13).

Retrieves quarterly or annual income statement financial data for a given publicly traded stock ticker symbol

## Facts

- Endpoint: GET https://the-stall.intuitek.ai/cap/income-statements
- Price: $0.035/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/the-stall-income-statements-api-5b4d8d1f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1EIHH9nHMf4jLEUwh8J3D

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 the-stall-income-statements-api-5b4d8d1f
```

Example prompt: Pull the last 4 quarterly income statements for NVDA so I can see how their revenue and net income have trended recently.

## When to prefer this

Use this endpoint when an AI agent needs income statement financials (revenue, net income, operating income) for a publicly traded US stock without setting up accounts or API keys — payment is handled per-call in USDC on Base mainnet via x402 protocol. Ideal for financial research workflows, earnings analysis, and fundamental analysis automation.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty result
- Limit value out of range (below 1 or above 8 for quarterly, above 4 for annual) causes validation failure
- Payment failure or insufficient USDC balance on Base mainnet blocks the request
- Unsupported period enum value causes schema validation error
- Data unavailable for very small-cap or OTC stocks

## How this service works

Full income statement + cash flow history for any US public stock. Returns quarterly (default, up to 8 periods) or annual (up to 4 years): revenue, COGS, gross profit, R&D, SG&A, operating income, EBITDA, pretax income, tax, net income, EPS (basic/diluted), operating cash flow, capex, free cash flow. 40% below stablefinance.dev/api/financials/income-statements ($0.020). Source: Yahoo Finance fundamentals timeseries (free, no API key required).

## Output

Returns structured income statement data for the specified ticker, including revenue, operating income, net income, and other P&L line items across the requested number of quarterly or annual periods (up to 8 quarters or 4 fiscal years).

## Example request

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

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "required": {
   "type": "string"
  },
  "properties": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/the-stall-income-statements-api-5b4d8d1f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from the-stall.intuitek.ai](https://www.zero.xyz/host/the-stall.intuitek.ai/llms.txt)
