# Financial Data x402 – Company Financials by Ticker

> Financial Data x402 – Company Financials by Ticker is a paid API for AI agents from x402financialdata.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns annual income statement, balance sheet, and cash flow data for a public company given its stock ticker symbol, billed at $0.01 USDC per call via x402.

## Facts

- Endpoint: GET https://x402financialdata.com/financials/%7Bticker%7D
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/financial-data-x402-company-financials-by-ticker-254ebd5b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mzcVVENL2U8mB4APQo7YR

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-by-ticker-254ebd5b
```

Example prompt: Pull up Apple's annual financial statements — income statement, balance sheet, and cash flow — using the ticker AAPL.

## When to prefer this

Choose this endpoint when you need structured annual financial statement data (income statement, balance sheet, cash flow) for a public company by ticker, and you want pay-per-call USDC micropayments with no API key or subscription setup. Prefer this over subscription-based financial data APIs when you need low-volume, on-demand fundamentals without committing to a monthly plan.

## Known failure modes

- Invalid or unknown ticker returns an error or empty result
- Payment failure over x402 (insufficient USDC balance or unsupported network) results in a 402 response and no data
- Ticker for a private company or non-listed entity may return no data
- Network or provider outage may result in a 5xx error
- Stale or missing data for recently listed or delisted companies

## 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 three sections for the requested ticker: (1) income_statement with revenue, gross profit, operating income, net income, basic EPS, and diluted EPS; (2) balance_sheet with total assets, total liabilities, total debt, stockholders equity, and cash and equivalents; (3) cash_flow with operating cash flow, free cash flow, and capital expenditure — all for the most recent annual period with a 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-by-ticker-254ebd5b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402financialdata.com](https://www.zero.xyz/host/x402financialdata.com/llms.txt)
