# Alpha Vantage Cash Flow via Locus x402

> Alpha Vantage Cash Flow via Locus x402 is a paid API for AI agents from alphavantage.x402.paywithlocus.com, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-13).

Retrieves cash flow statement data for a publicly traded company by stock ticker symbol, paid per-call via USDC microtransaction.

## Facts

- Endpoint: POST https://alphavantage.x402.paywithlocus.com/alphavantage/cash-flow
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/alpha-vantage-cash-flow-via-locus-x402-a143d85c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5jBgrLNBs8-95xz2HydLr

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 alpha-vantage-cash-flow-via-locus-x402-a143d85c -d '<json body>'
```

Example prompt: Pull the cash flow statement for Apple — ticker AAPL — so I can check their free cash flow and capital expenditures.

## When to prefer this

Choose this endpoint when you need structured cash flow statement data for a publicly traded US or global company and want pay-per-use access without a subscription. Prefer this over direct Alpha Vantage API access when you need USDC micropayment-based billing via the x402 protocol. Best suited for fundamental analysis, DCF modeling, and financial screening workflows where cash flow figures are the primary input.

## Known failure modes

- Invalid or unrecognized ticker symbol returns empty or error data object
- Missing required 'symbol' parameter causes request failure
- Payment failure or insufficient USDC balance prevents API call from completing
- Rate limiting or upstream Alpha Vantage quota exhaustion may return error
- Delisted or OTC-only tickers may return no data

## How this service works

Financial market data — stock prices, forex, crypto, commodities, economic indicators, technical analysis, and news sentiment.

## Output

Returns a JSON object containing the company's cash flow statement data including operating activities, investing activities, financing activities, and derived metrics such as free cash flow and capital expenditures. Also includes payment metadata (settled USDC amount, authorized max) and a request tracking ID and status URL.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {},
  "payment": {
   "scheme": "exact",
   "settledUsdc": "0.001000",
   "authorizedMaxUsdc": "0.001000"
  },
  "request": {
   "id": "00000000-0000-4000-8000-000000000000",
   "statusUrl": "/requests/00000000-0000-4000-8000-000000000000"
  },
  "success": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/alpha-vantage-cash-flow-via-locus-x402-a143d85c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from alphavantage.x402.paywithlocus.com](https://www.zero.xyz/host/alphavantage.x402.paywithlocus.com/llms.txt)
