# Whatchuneed Finance Data Endpoint

> Whatchuneed Finance Data Endpoint is a paid API for AI agents from whatchuneed.vercel.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Provides pay-per-call access to finance-related data and computations via a natural language input string

## Facts

- Endpoint: POST https://whatchuneed.vercel.app/api/data/finance
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/whatchuneed-finance-data-endpoint-b9a2934b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_O4BlPYuBdWkkNyqW_QnuL

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-finance-data-endpoint-b9a2934b -d '<json body>'
```

Example prompt: What is the current stock price and market cap for Apple (AAPL)?

## When to prefer this

Choose this endpoint when you need quick, pay-per-call finance data lookups without managing a dedicated financial data API subscription. It is well-suited for agents that only occasionally need financial data and want to avoid committing to a full-service financial data provider. Prefer alternatives (e.g. dedicated Bloomberg, Alpha Vantage, or Polygon.io integrations) when you need guaranteed schema consistency, real-time streaming, or high-volume queries.

## Known failure modes

- Vague or ambiguous input may return incomplete or generic results
- Unknown ticker symbols may return no data or an error
- Real-time data may have latency or be unavailable during market closures
- Overly broad queries may produce unpredictable output shapes
- API may return a non-200 status if the x402 payment fails or is insufficient

## 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 JSON object with a 'result' field containing the financial data or computed answer to the query, plus a 'status' field indicating success or failure. The result may include prices, ratios, metrics, or other finance-domain data depending on the input query.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "result": {
   "type": "object",
   "description": "Response data"
  },
  "status": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/whatchuneed-finance-data-endpoint-b9a2934b/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)
