# AlphaLens Stock Intelligence Search API

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

Searches and retrieves AI-powered stock analysis, technical indicators, sentiment scores, and portfolio risk data via a natural language query

## Facts

- Endpoint: POST https://alephack.vercel.app/api/search
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/alphalens-stock-intelligence-search-api-18655e6d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VHThgqTEGqTYrg3mSoi5j

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-18655e6d -d '<json body>'
```

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

## When to prefer this

Choose this endpoint when you need a broad, natural-language search across multiple dimensions of stock intelligence (technical, sentiment, risk) in a single call, rather than querying specialized endpoints for each data type separately. Best suited for exploratory research or when the specific data type needed is not yet known.

## Known failure modes

- Query field missing — returns error if required 'query' parameter is not provided
- Vague or unrecognized query — may return empty or low-relevance data object
- Payment failure — x402 payment on Base chain not completed, request blocked
- Rate limiting or quota exceeded — server may reject requests
- Ambiguous ticker or company name — may return results for wrong entity

## 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 AI-generated stock analysis results relevant to the query, which may include technical indicators, sentiment scores, risk metrics, or other financial intelligence depending on the search 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-18655e6d/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)
