# AlphaLens Stock Screener

> AlphaLens Stock Screener is a paid API for AI agents from alphcok.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 technical indicators, sentiment scores, and portfolio risk metrics

## Facts

- Endpoint: POST https://alphcok.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-7f568c89
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_W6U6cNAm4KgY8DW1fyp_w

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

Example prompt: Can you screen these stocks — AAPL, TSLA, NVDA, MSFT, and AMZN — and tell me which ones look most attractive right now based on technical signals and sentiment?

## When to prefer this

Use this endpoint when you need to screen or compare multiple stock tickers simultaneously using AI-powered technical and sentiment analysis, especially when you want a consolidated risk and signal view across a watchlist rather than deep fundamental data on a single stock.

## Known failure modes

- Empty or missing symbols array returns validation error
- Invalid ticker symbols may return empty or null data per symbol
- Payment failure on Base chain results in 402 response blocking the request
- Network timeout if too many symbols are submitted simultaneously
- Service unavailability on Vercel deployment returns 5xx error

## 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 success flag and a data object containing AI-powered analysis for each submitted symbol, likely including technical indicators, sentiment scores, and risk assessments per ticker.

## 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-7f568c89/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)
