# AlphaLens Stock Analyze Endpoint

> AlphaLens Stock Analyze Endpoint 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).

Performs AI-powered stock analysis including technical indicators, sentiment scoring, and portfolio risk for a given stock symbol

## Facts

- Endpoint: POST https://alphcok.vercel.app/api/analyze
- 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-analyze-endpoint-c54f01ab
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DQxw2-sr9eFfy-FBi4i-L

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-analyze-endpoint-c54f01ab -d '<json body>'
```

Example prompt: Can you run a full AI-powered stock analysis on NVDA — technical indicators, sentiment score, and risk — and tell me what you find?

## When to prefer this

Use this endpoint when you need a comprehensive, AI-synthesized view of a stock including technical indicators, sentiment, and risk in a single call, especially when paying per-request via x402 on Base chain is acceptable. Prefer this over raw market data APIs when you want pre-computed intelligence rather than raw price feeds.

## Known failure modes

- Missing required 'symbol' field returns an error response
- Invalid or unrecognized ticker symbol may return empty or error data
- Payment failure on Base chain (x402) blocks the request
- Service unavailable due to Vercel cold start or upstream data source issues
- success: false returned with no data if analysis pipeline fails

## 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 AI-generated stock analysis results, which may include technical indicator values, sentiment scores, and portfolio risk assessments for the requested ticker symbol.

## Request schema (JSON Schema)

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

## 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-analyze-endpoint-c54f01ab/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)
