# AlphaLens Stock Search

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

Searches for AI-powered stock intelligence including analysis, technical indicators, and sentiment scoring based on a natural language or symbol query

## Facts

- Endpoint: POST https://alphacook.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-search-0595573d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_b9c3yhelOgdNSqqDu1_4X

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-search-0595573d -d '<json body>'
```

Example prompt: Search AlphaLens for AI-powered stock analysis on NVIDIA — I want to see sentiment scores, technical indicators, and any risk signals for NVDA right now.

## When to prefer this

Use this endpoint when you need a broad, natural-language search across AlphaLens stock intelligence data — ideal for finding analysis on a company by name or ticker without knowing which specific sub-endpoint to call. Prefer this over direct analysis endpoints when the user query is open-ended or exploratory.

## Known failure modes

- Missing required 'query' field returns validation error
- Empty or ambiguous query may return empty data set
- Payment failure on Base chain (x402) blocks the request
- Vercel cold start may cause occasional latency spikes
- Unknown ticker or company name may yield no 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 flag and a data object containing AI-generated stock intelligence results relevant to the query, potentially including technical indicators, sentiment scores, and portfolio risk metrics for matched securities.

## 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-search-0595573d/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)
