# AlphaLens Earnings Data Endpoint

> AlphaLens Earnings Data Endpoint is a paid API for AI agents from alupheck.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://alupheck.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-74b7dd06
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LXnGaX1J4ovBj716d-wXL

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-74b7dd06 -d '<json body>'
```

Example prompt: Pull the latest earnings data for NVDA using AlphaLens — I want to see their most recent quarterly results including EPS and revenue.

## When to prefer this

Use this endpoint when you need structured earnings data (EPS, revenue, quarterly results) for a specific stock ticker, especially when AI-enriched scoring or sentiment is desired alongside raw figures. Prefer this over generic financial data APIs when you are already paying per-request via x402 on Base chain and want a bundled AI analysis layer.

## Known failure modes

- Invalid or unrecognized stock ticker symbol returns an error or empty data
- Missing required 'symbol' field causes a 400-level validation error
- Payment failure or insufficient USDC balance blocks the request with a 402 response
- Downstream data provider outage may cause 500-level errors or stale data
- Delisted or non-US 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

A JSON object containing a success boolean and a data object with earnings-related financial metrics for the requested stock symbol, such as EPS, revenue, earnings date, and AI-derived analysis or scoring.

## 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-74b7dd06/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from alupheck.vercel.app](https://www.zero.xyz/host/alupheck.vercel.app/llms.txt)
