# AlphaLens Stock Screener

> AlphaLens Stock Screener is a paid API for AI agents from alupheck.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Screens a list of stock symbols through AI-powered analysis returning intelligence signals for each symbol

## Facts

- Endpoint: POST https://alupheck.vercel.app/api/screen
- Price: $0.1/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-screener-6235c403
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_i0t_TuMIxuv_aj1g3ALYb

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-screener-6235c403 -d '<json body>'
```

Example prompt: Can you screen AAPL, MSFT, NVDA, and TSLA through AlphaLens and tell me which ones are looking strongest right now based on AI signals?

## When to prefer this

Use this endpoint when you need to screen or rank multiple stock tickers simultaneously using AI-powered signals, and want to pay per request without a subscription. Best when comparing a watchlist or basket of equities for relative strength or opportunity.

## Known failure modes

- Missing required symbols array returns validation error
- Empty symbols array may return empty data
- Invalid ticker symbols may return no data or error for those symbols
- Payment failure on Base chain results in 402 response
- Service unavailable on Vercel returns 5xx

## 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 screening results for the submitted stock symbols, including AI-powered analysis signals.

## 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-screener-6235c403/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)
