# AlphaLens Technical Indicators API

> AlphaLens Technical Indicators API is a paid API for AI agents from alphacook.vercel.app, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Computes technical analysis indicators (e.g. RSI, MACD, Bollinger Bands) for a given stock symbol using AI-powered analysis

## Facts

- Endpoint: POST https://alphacook.vercel.app/api/technical
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/alphalens-technical-indicators-api-16213cfc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_a-CK06OtUK7xhsNVIlqYR

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-technical-indicators-api-16213cfc -d '<json body>'
```

Example prompt: What's the RSI for NVDA right now? Run it through AlphaLens and tell me if it looks overbought or oversold.

## When to prefer this

Use this endpoint when you need programmatic, on-demand technical indicator calculations for individual stocks without maintaining your own financial data pipeline. Ideal for AI agents performing automated stock screening, trading signal generation, or portfolio analysis where per-request micropayment via x402/Base chain is acceptable.

## Known failure modes

- Invalid or unrecognized stock symbol returns error or success:false
- Unsupported indicator name returns failure response
- Payment not completed (402) blocks the request
- Vercel cold start may cause latency spike
- Missing required fields (symbol or indicator) returns validation 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 JSON object with a success flag and a data object containing the computed technical indicator result for the requested stock symbol and indicator type.

## Request schema (JSON Schema)

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

## 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-technical-indicators-api-16213cfc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from alphacook.vercel.app](https://www.zero.xyz/host/alphacook.vercel.app/llms.txt)
