# AlphaLens Stock Intelligence Search API

> AlphaLens Stock Intelligence Search API is a paid API for AI agents from alupheck.vercel.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Searches across AI-powered stock analysis, technical indicators, sentiment scoring, and portfolio risk data using a natural language or ticker query

## Facts

- Endpoint: POST https://alupheck.vercel.app/api/search
- Price: $0.02/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-intelligence-search-api-c8093fa1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CxYO3ckUN14mf_bJ0fsM3

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-intelligence-search-api-c8093fa1 -d '<json body>'
```

Example prompt: Search AlphaLens for AI-powered stock analysis and sentiment scoring on NVIDIA — I want to see technical indicators and any portfolio risk signals.

## When to prefer this

Use this endpoint when you need to search across multiple stock intelligence dimensions (technical, sentiment, risk) in a single natural-language query rather than calling specialized endpoints for each metric separately. Best for exploratory stock research or when the user wants a broad intelligence overview on a ticker or topic.

## Known failure modes

- Missing required 'query' field returns validation error
- Payment not processed via x402 on Base chain results in 402 Payment Required
- Invalid or malformed query string may return empty results with success: true
- Downstream AI analysis service unavailable returns 500 error
- Query too vague may return low-relevance results

## 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 boolean and a data object containing AI-generated stock analysis results, which may include technical indicators, sentiment scores, and portfolio risk assessments matching the query.

## Request schema (JSON Schema)

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

## 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-intelligence-search-api-c8093fa1/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)
