# AlphaLens Stock Quote API

> AlphaLens Stock Quote API 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).

Fetches real-time or current stock quote data for a given ticker symbol

## Facts

- Endpoint: POST https://alphacook.vercel.app/api/quote
- 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-quote-api-15e7b5ec
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0hna_mSF6-YuUbE-EnM6y

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-quote-api-15e7b5ec -d '<json body>'
```

Example prompt: What is the current stock quote for NVDA? Pull it using the AlphaLens stock intelligence API and show me the latest price data.

## When to prefer this

Use this endpoint when you need a quick, per-request stock quote for a specific ticker symbol, especially in an agentic context where you pay micro-fees per call via x402 on Base chain. Prefer this over broader financial data providers when you want lightweight, AI-agent-friendly stock lookups without a subscription.

## Known failure modes

- Invalid or unrecognized ticker symbol returns success:false
- Network or upstream data provider timeout
- Payment failure via x402 on Base chain blocks the request
- Missing required 'symbol' field in request body causes validation error
- Symbol for a delisted or OTC stock may return no data

## 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 stock quote details for the requested symbol, likely including price, volume, and other market data fields.

## 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-quote-api-15e7b5ec/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)
