# WhatChuNeed Finance History Endpoint

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

Retrieves historical financial data (prices, transactions, or market history) for a given asset or query via a pay-per-call API

## Facts

- Endpoint: POST https://whatchuneed.vercel.app/api/finance/history
- Price: $0.2/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-history-endpoint-61a0c11a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gBlDgVf6FyX2Q2zyXxYwv

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-history-endpoint-61a0c11a -d '<json body>'
```

Example prompt: Can you pull the historical price data for Bitcoin over the last 30 days so I can see how it has moved?

## When to prefer this

Choose this endpoint when you need historical financial data (prices, market history, or transaction records) for stocks, crypto, or other assets and want a simple pay-per-call model via x402 protocol without managing separate API keys for financial data providers. Best suited for lightweight lookups and analysis tasks within an agent workflow.

## Known failure modes

- Vague or unrecognized input string may return empty or irrelevant results
- Payment failure via x402 protocol results in 402 response and no data returned
- Unsupported asset or ticker symbol may yield no results
- Malformed input object missing required 'input' field returns validation error
- Rate limiting or backend unavailability may cause timeout or error status

## 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 result object containing historical financial data such as price series, OHLCV records, or transaction history corresponding to the queried asset or financial instrument, along with a status string indicating success or failure.

## 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-history-endpoint-61a0c11a/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)
