# AlphaLens Technical Indicators API

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

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

## Facts

- Endpoint: POST https://alephack.vercel.app/api/technical
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/alphalens-technical-indicators-api-434eca2b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Efr_OsFbrVUIaV38oBgAr

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

Example prompt: Can you run a technical analysis on NVDA using the RSI indicator and tell me whether it looks overbought or oversold right now?

## When to prefer this

Choose this endpoint when you need a quick, pay-per-use technical indicator computation for a specific stock symbol without maintaining a subscription. Ideal for AI agents that need on-demand technical signals like RSI, MACD, or Bollinger Bands integrated into trading decision workflows, especially when using x402 micropayment infrastructure on Base chain.

## Known failure modes

- Invalid or unsupported stock symbol returns success: false
- Unsupported indicator type causes an error response
- Payment failure via x402 on Base chain blocks request
- Network timeout or Vercel cold start causes slow or failed response
- Malformed request body missing required fields returns an 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 boolean and a data object containing the computed technical indicator values 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-434eca2b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from alephack.vercel.app](https://www.zero.xyz/host/alephack.vercel.app/llms.txt)
