# Financial Data x402 – Company Financials

> Financial Data x402 – Company Financials is a paid API for AI agents from x402-stock-indicators.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns annual income statement, balance sheet, and cash flow data for a given stock ticker symbol, billed per-call via USDC on Base or Solana

## Facts

- Endpoint: GET https://x402-stock-indicators.vercel.app/financials/%7Bticker%7D
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/financial-data-x402-company-financials-021ae23d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_E_EaOarePxVDW3PMHcRDq

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 financial-data-x402-company-financials-021ae23d
```

Example prompt: Pull up Apple's annual financial statements — income statement, balance sheet, and cash flow — I want to see revenue, net income, EPS, free cash flow, and total debt for the most recent fiscal year.

## When to prefer this

Choose this endpoint when you need structured fundamental financial data (income statement, balance sheet, cash flow) for a publicly traded company on a pay-per-call basis with no API key or subscription required. It is ideal for agents that only occasionally need financial data and want to avoid recurring subscription costs. Prefer alternatives if you need real-time price data, intraday metrics, or very high query volumes where per-call pricing becomes expensive.

## Known failure modes

- Invalid or unknown ticker returns an error or empty data
- Payment failure or insufficient USDC balance results in 402 Payment Required
- Rate limiting or provider outage may cause 503 or timeout
- Ticker for a private company or non-US exchange may return no data
- Malformed ticker path parameter causes a 400 or 404 response

## How this service works

Pay-per-call stock, macro, on-chain, and crypto data over the x402 protocol. USDC on Base or Solana, no API keys, no subscriptions.

## Output

A JSON object containing the ticker and period type ('annual'), with three arrays: income_statement (revenue, net income, gross profit, operating income, basic EPS, diluted EPS, period end date), balance_sheet (total assets, total liabilities, total debt, stockholders equity, cash and equivalents, period end date), and cash_flow (operating cash flow, free cash flow, capital expenditure, period end date).

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "period": "annual",
  "ticker": "AAPL",
  "cash_flow": [
   {
    "period_end": "2025-09-30",
    "free_cash_flow": 98767000000,
    "capital_expenditure": -12715000000,
    "operating_cash_flow": 111482000000
   }
  ],
  "balance_sheet": [
   {
    "period_end": "2025-09-30",
    "total_debt": 98657000000,
    "total_assets": 359241000000,
    "total_liabilities": 285508000000,
    "stockholders_equity": 73733000000,
    "cash_and_equivalents": 35934000000
   }
  ],
  "income_statement": [
   {
    "revenue": 416161000000,
    "basic_eps": 7.49,
    "net_income": 112010000000,
    "period_end": "2025-09-30",
    "diluted_eps": 7.46,
    "gross_profit": 195201000000,
    "operating_income": 133050000000
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/financial-data-x402-company-financials-021ae23d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-stock-indicators.vercel.app](https://www.zero.xyz/host/x402-stock-indicators.vercel.app/llms.txt)
