# AlphaLens Stock Compare Endpoint

> AlphaLens Stock Compare 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).

Compares multiple stocks side-by-side using AI-powered analysis including technical indicators, sentiment, and risk metrics

## Facts

- Endpoint: POST https://alupheck.vercel.app/api/compare
- 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-stock-compare-endpoint-bed1c8c7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3tYRgBV1zN60GiC8yzoOT

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-stock-compare-endpoint-bed1c8c7 -d '<json body>'
```

Example prompt: Can you compare AAPL, MSFT, and NVDA side by side — I want to see how they stack up on technicals, sentiment, and risk before I decide which one to buy?

## When to prefer this

Use this endpoint when you need to compare two or more stocks simultaneously and want AI-synthesized metrics rather than raw market data. Ideal for investment decision support, portfolio candidate screening, or any multi-stock benchmarking task where technical indicators, sentiment, and risk need to be weighed together in a single call.

## Known failure modes

- Empty or missing symbols array returns 400 validation error
- Invalid or unrecognized ticker symbols may return empty or null data fields
- Payment failure on Base chain results in 402 response before analysis is performed
- Too many symbols in array may cause timeout or partial results
- Market data unavailable for certain symbols returns success:false

## 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 structured comparison object containing side-by-side analysis data for each requested stock symbol, including technical indicators, sentiment scores, and portfolio risk metrics for all submitted tickers

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "symbols"
 ],
 "properties": {
  "symbols": {
   "type": "array",
   "description": "symbols"
  }
 }
}
```

## 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-stock-compare-endpoint-bed1c8c7/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)
