# whatchuneed Stock Analyzer

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

Analyzes a stock ticker symbol and returns a rating, key financial metrics, and an investment recommendation.

## Facts

- Endpoint: POST https://whatchuneed.vercel.app/api/alpha/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/whatchuneed-stock-analyzer-17b1bdac
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cFvoaeY7aLja6t3sdqzfy

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 whatchuneed-stock-analyzer-17b1bdac -d '<json body>'
```

Example prompt: Can you analyze NVDA stock for me — give me the rating, key metrics like the P/E ratio and 52-week range, and tell me if it's a buy?

## When to prefer this

Use this endpoint when you need a fast, all-in-one stock fundamental analysis — rating, metrics, and recommendation — for a single ticker symbol via a pay-per-call model with no subscription required. Prefer it over scraping financial sites or calling multiple data APIs when you want a single synthesized output with an actionable recommendation.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty result
- Delisted or OTC stocks may not have complete metric data
- Rate limiting or payment failure via x402 protocol may block the request
- Market cap or P/E ratio may be null for stocks without sufficient data (e.g. pre-revenue companies)

## How this service works

320+ pay-per-call API endpoints across accommodation, LLM, code execution, crypto, medical, finance, and more. One API, one payment. Powered by x402 protocol.

## Output

Returns a structured object containing a rating string (e.g. Buy/Hold/Sell), a recommendation summary, a detailed analysis text, and key financial metrics including 52-week low, 52-week high, P/E ratio, and market cap.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "rating": {
   "type": "string"
  },
  "metrics": {
   "type": "object",
   "properties": {
    "52w_low": {
     "type": "number"
    },
    "52w_high": {
     "type": "number"
    },
    "pe_ratio": {
     "type": "number"
    },
    "market_cap": {
     "type": "number"
    }
   },
   "recommendation": {
    "type": "string"
   }
  },
  "analysis": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/whatchuneed-stock-analyzer-17b1bdac/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from whatchuneed.vercel.app](https://www.zero.xyz/host/whatchuneed.vercel.app/llms.txt)
