# Alpha Vantage Income Statement via Locus x402

> Alpha Vantage Income Statement 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-15).

Retrieves a company's income statement data (annual and quarterly) by stock ticker symbol, paid per-call via USDC microtransaction.

## Facts

- Endpoint: POST https://alphavantage.x402.paywithlocus.com/alphavantage/income-statement
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/alpha-vantage-income-statement-via-locus-x402-c4f6fc9d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__WX_rWdWTHQMsM__zmGIA

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-income-statement-via-locus-x402-c4f6fc9d -d '<json body>'
```

Example prompt: Pull the income statement for Apple — ticker AAPL — so I can see their revenue and net income trends over recent quarters.

## When to prefer this

Use this endpoint when you need structured income statement financials (revenue, net income, gross profit, EPS) for a publicly traded company by ticker symbol and are operating in a pay-per-call USDC micropayment context. Prefer this over subscription-based Alpha Vantage direct access when you want usage-based billing without API key management.

## Known failure modes

- Invalid or unknown ticker symbol returns empty or error data
- Payment failure if USDC balance is insufficient
- Rate limiting or upstream Alpha Vantage API errors may return partial or no data
- Non-US or OTC tickers may have limited or no income statement data
- Network timeout if upstream Alpha Vantage is slow

## 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 income statement data from Alpha Vantage, including annual and quarterly figures for revenue, gross profit, operating income, net income, EPS, and other P&L line items. Also includes payment confirmation metadata (settled USDC amount, request ID, 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-income-statement-via-locus-x402-c4f6fc9d/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)
