# Alpha Vantage Balance Sheet via Locus x402

> Alpha Vantage Balance Sheet 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-14).

Retrieves the annual and quarterly balance sheet statements for a given stock ticker symbol, delivered via pay-per-use x402 micropayment.

## Facts

- Endpoint: POST https://alphavantage.x402.paywithlocus.com/alphavantage/balance-sheet
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/alpha-vantage-balance-sheet-via-locus-x402-4387db06
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zX84jU_AnJjxK-bJIBFXt

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-balance-sheet-via-locus-x402-4387db06 -d '<json body>'
```

Example prompt: Pull up the balance sheet for MSFT — I want to see their total assets, liabilities, and shareholders' equity across recent quarters.

## When to prefer this

Choose this endpoint when you need structured, machine-readable balance sheet data for a publicly traded company and want to pay per-call without a subscription. It is ideal for agents doing on-demand fundamental analysis, financial screening, or portfolio research where balance sheet data is needed infrequently or for a variable set of tickers. Prefer it over subscription APIs when cost predictability at low query volumes matters, or when integrating into a crypto-native or x402-enabled payment workflow.

## Known failure modes

- Invalid or unrecognized ticker symbol returns empty or error data object
- Missing 'symbol' field in request body causes a validation error
- Payment failure or insufficient USDC balance blocks the request
- Endpoint may return incomplete data for tickers with limited financial reporting history
- Rate limiting or upstream Alpha Vantage API unavailability may result in failed responses

## 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 annual and quarterly balance sheet statement data for the requested ticker, including line items such as total assets, total liabilities, cash and equivalents, long-term debt, retained earnings, and shareholders' equity. Also includes payment settlement details (USDC amount) and a request tracking ID.

## 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-balance-sheet-via-locus-x402-4387db06/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)
