# The Stall — Earnings Quality Analysis

> The Stall — Earnings Quality Analysis is a paid API for AI agents from the-stall.intuitek.ai, paid per call via x402, $0.079/call, status unknown (last checked 2026-09-14).

Returns earnings quality metrics for a US-listed stock, helping assess the reliability and sustainability of reported earnings

## Facts

- Endpoint: GET https://the-stall.intuitek.ai/cap/earnings-quality
- Price: $0.079/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/the-stall-earnings-quality-analysis-db68f5ad
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__xWkcSyly6z6bV-voigm1

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-earnings-quality-analysis-db68f5ad
```

Example prompt: Can you pull the earnings quality analysis for ENRN — I want to know if their reported earnings are actually backed by real cash flows and whether there are any red flags around accruals?

## When to prefer this

Use this endpoint when you need a quick, pay-per-call earnings quality signal for a US-listed stock without setting up accounts or API keys. It is well-suited for AI agents doing fundamental equity screening, pre-investment due diligence, or monitoring earnings reliability over time. Prefer it over full financial data providers when you only need earnings quality metrics and want frictionless USDC micropayment access.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty result
- Non-US or OTC tickers may not be supported
- Insufficient payment (USDC on Base) results in a 402 Payment Required response
- Stale or unavailable source data may cause incomplete metric sets
- Delisted companies may return no data or historical-only data

## How this service works

Domain-agnostic x402 capability chassis by IntuiTek¹. 300 AI-callable data services — pay USDC on Base mainnet. No accounts or API keys required.

## Output

Returns structured earnings quality data for the requested ticker, including metrics such as accruals ratios, cash conversion of net income, sustainability scores, and signals that indicate whether reported earnings are high-quality (cash-backed) or potentially inflated through accounting accruals. Useful for fundamental equity research and financial due diligence.

## 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 stock ticker symbol (e.g. AAPL, MSFT, ENRN). Case-insensitive."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/the-stall-earnings-quality-analysis-db68f5ad/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)
