# Alpha Vantage Earnings via Locus x402

> Alpha Vantage Earnings 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 earnings data (EPS, revenue, estimates, surprises) for a given stock ticker symbol via Alpha Vantage, paid per-call with USDC.

## Facts

- Endpoint: POST https://alphavantage.x402.paywithlocus.com/alphavantage/earnings
- 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-earnings-via-locus-x402-b0500bf4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3uQMrsxtvrjtWV9pl5lEl

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-earnings-via-locus-x402-b0500bf4 -d '<json body>'
```

Example prompt: Can you pull the earnings history for NVDA — I want to see their quarterly EPS actuals versus estimates and any earnings surprises?

## When to prefer this

Choose this endpoint when you need structured earnings data — EPS actuals, estimates, surprises, and history — for publicly traded US equities, especially in a pay-per-call context without needing a full Alpha Vantage subscription. Prefer it over general market data endpoints when the specific need is fundamental earnings analysis rather than real-time price data.

## Known failure modes

- Invalid or unrecognized ticker symbol returns empty or error data
- Private/delisted companies may have no earnings data available
- Payment failure or insufficient USDC balance blocks the request
- Rate limits on the underlying Alpha Vantage API may cause timeouts or empty responses
- Very small-cap or OTC stocks may have incomplete earnings records

## 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 historical earnings data for the specified stock ticker, including quarterly and annual EPS actuals, consensus estimates, surprise amounts, and surprise percentages as sourced from Alpha Vantage.

## 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-earnings-via-locus-x402-b0500bf4/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)
