# AlphaLens Technical Indicators Endpoint

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

Computes AI-powered technical indicators for a given stock symbol on demand

## Facts

- Endpoint: POST https://alupheck.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-endpoint-8c093b6b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pyEw2c6YKHs7TRr5Gb0BC

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-endpoint-8c093b6b -d '<json body>'
```

Example prompt: Can you pull the RSI indicator for NVDA using AlphaLens and tell me if it looks overbought or oversold right now?

## When to prefer this

Use this endpoint when you need on-demand technical indicator calculations for individual stocks — RSI, MACD, moving averages, Bollinger Bands, etc. — without maintaining your own data pipeline. It is especially suited for AI agents making per-request pay-as-you-go calls at $0.03 USDC via x402 on Base chain, rather than subscribing to a monthly data feed.

## Known failure modes

- Invalid or unrecognized stock symbol returns success:false
- Unsupported indicator type returns an error or empty data
- Payment failure on Base chain blocks the request
- Vercel cold-start may cause occasional latency spikes
- Missing required fields (symbol or indicator) returns a 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

A JSON object with a success boolean and a data object containing the computed technical indicator result for the specified 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-endpoint-8c093b6b/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)
