# Stable Financial – Combined Financial Statements

> Stable Financial – Combined Financial Statements is a paid API for AI agents from stable-financial.vercel.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns income statements, balance sheets, and cash flow statements together in a single API response for a given company and reporting period.

## Facts

- Endpoint: GET https://stable-financial.vercel.app/api/financials
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stable-financial-combined-financial-statements-ab99c3c3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Y6NY0D0_3zGvdDojLA79z

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 stable-financial-combined-financial-statements-ab99c3c3
```

Example prompt: Pull the last 4 quarterly income statements, balance sheets, and cash flow statements for MSFT all at once.

## When to prefer this

Use this endpoint when you need all three core financial statements (income, balance sheet, cash flow) for a public company in one call, avoiding multiple round trips. Ideal for fundamental analysis, financial modeling, or due diligence workflows where you need a full picture of a company's financials across annual, quarterly, or trailing-twelve-month periods.

## Known failure modes

- Missing required 'period' parameter returns a validation error
- Neither ticker nor CIK provided results in no data returned or an error
- Invalid ticker symbol returns empty results or 404
- Report date filter yields no results if no filings exist in that range
- Limit exceeds 50 returns a validation error

## How this service works

Income, balance sheet, and cash flow statements in one response.

## Output

A JSON object with a 'financials' key containing three arrays: income_statements, balance_sheets, and cash_flow_statements — each populated with the requested number of periods for the specified company.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "period"
     ],
     "properties": {
      "cik": {
       "type": "string",
       "minLength": 1
      },
      "limit": {
       "type": "integer",
       "maximum": 50,
       "minimum": 1
      },
      "period": {
       "enum": [
        "annual",
        "quarterly",
        "ttm"
       ],
       "type": "string"
      },
      "ticker": {
       "type": "string",
       "minLength": 1
      },
      "report_period": {
       "type": "string",
       "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
      },
      "report_period_gt": {
       "type": "string",
       "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
      },
      "report_period_lt": {
       "type": "string",
       "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
      },
      "report_period_gte": {
       "type": "string",
       "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
      },
      "report_period_lte": {
       "type": "string",
       "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "financials"
     ],
     "properties": {
      "financials": {
       "type": "object",
       "required": [
        "income_statements",
        "balance_sheets",
        "cash_flow_statements"
       ],
       "properties": {
        "balance_sheets": {
         "type": "array",
         "items": {}
        },
        "income_statements": {
         "type": "array",
         "items": {}
        },
        "cash_flow_statements": {
         "type": "array",
         "items": {}
        }
       },
       "additionalProperties": false
      }
     },
     "additionalProperties": false
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stable-financial-combined-financial-statements-ab99c3c3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stable-financial.vercel.app](https://www.zero.xyz/host/stable-financial.vercel.app/llms.txt)
