# AlphaLens Earnings Data Endpoint

> AlphaLens Earnings Data Endpoint is a paid API for AI agents from alphcok.vercel.app, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-15).

Retrieves AI-powered earnings data and analysis for a given stock ticker symbol

## Facts

- Endpoint: POST https://alphcok.vercel.app/api/earnings
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/alphalens-earnings-data-endpoint-c6a10689
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Kwk6wB76FzmMLMsF1d5OJ

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 alphalens-earnings-data-endpoint-c6a10689 -d '<json body>'
```

Example prompt: Pull up the earnings data for NVDA — I want to see the latest quarterly results and how they compared to estimates.

## When to prefer this

Use this endpoint when you need structured earnings data (EPS, estimates, surprises, quarterly results) for a specific publicly traded stock and want AI-enriched analysis alongside raw numbers. Best when building investment research workflows or agent pipelines that already use the AlphaLens suite of endpoints on Base chain via x402 micropayments.

## Known failure modes

- Invalid or unrecognized ticker symbol returns error
- Payment not processed or x402 payment failure causes 402 response
- Network timeout from upstream data provider
- Symbol field missing from request body returns validation error
- Delisted or OTC stocks may return no data

## How this service works

AI-powered stock analysis, technical indicators, sentiment scoring, and portfolio risk. 11 endpoints. Pay per request via x402 on Base chain.

## Output

Returns a JSON object with a success boolean and a data object containing earnings-related information for the specified stock symbol, likely including EPS estimates, actuals, earnings surprises, and quarterly historical data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "symbol"
 ],
 "properties": {
  "symbol": {
   "type": "string",
   "description": "symbol"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "success"
 ],
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/alphalens-earnings-data-endpoint-c6a10689/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from alphcok.vercel.app](https://www.zero.xyz/host/alphcok.vercel.app/llms.txt)
