# StableFinance As-Reported Cash Flow Statement Data

> StableFinance As-Reported Cash Flow Statement Data is a paid API for AI agents from stablefinance.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Retrieves as-reported cash flow statement concepts and labels for public companies by ticker or CIK, filtered by period type and date range.

## Facts

- Endpoint: GET https://stablefinance.dev/api/financials/cash-flow-statements/as-reported
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablefinance-as-reported-cash-flow-statement-data-bcd69152
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-ZRUlKcoOj8b1dL-3d07F

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 stablefinance-as-reported-cash-flow-statement-data-bcd69152
```

Example prompt: Pull the quarterly as-reported cash flow statements for Tesla (ticker: TSLA) from stablefinance.dev, covering periods from 2022-01-01 to 2023-12-31, and give me the most recent 10 results.

## When to prefer this

Choose this endpoint when you need as-reported (raw, company-filed) cash flow statement data for a specific public company, especially when you want to preserve original line-item labels and concepts as submitted to the SEC. Prefer this over normalized/standardized financial data endpoints when the exact reported figures and labels matter for compliance, research, or comparisons.

## Known failure modes

- Missing required 'period' parameter returns a validation error
- Invalid ticker or CIK returns empty results or 404
- Date pattern not matching YYYY-MM-DD format returns schema validation error
- limit exceeds 50 returns validation error
- Ambiguous or missing company identifier returns no data
- Payment not attached or insufficient USDC balance returns 402 Payment Required

## How this service works

As-reported cash flow statement concepts and labels.

## Output

An array of cash flow statement objects as originally reported by the company, including all line-item concepts and labels for the specified period(s), returned in the cash_flow_statements array.

## 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"
       ],
       "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": [
      "cash_flow_statements"
     ],
     "properties": {
      "cash_flow_statements": {
       "type": "array",
       "items": {}
      }
     },
     "additionalProperties": false
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "cash_flow_statements": [
   {
    "period": "annual",
    "ticker": "AAPL",
    "currency": "USD",
    "filing_url": "https://www.sec.gov/Archives/edgar/data/320193/000032019324000123/0000320193-24-000123-index.htm",
    "line_items": [
     {
      "label": "Cash generated by operating activities",
      "value": 118254000000,
      "concept": "NetCashProvidedByUsedInOperatingActivities"
     }
    ],
    "fiscal_period": "FY2024",
    "report_period": "2024-09-28",
    "accession_number": "0000320193-24-000123"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablefinance-as-reported-cash-flow-statement-data-bcd69152/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stablefinance.dev](https://www.zero.xyz/host/stablefinance.dev/llms.txt)
