# ScrapFly Finance History — Historical Price Data by Symbol

> ScrapFly Finance History — Historical Price Data by Symbol is a paid API for AI agents from test-scrapfly.orbonomy.xyz, paid per call via x402, $0.07/call, status unknown (last checked 2026-09-15).

Fetches historical financial price data for a given stock or asset symbol

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/finance/history
- Price: $0.07/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scrapfly-finance-history-historical-price-data-by-symbol-194580bd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zroadMD136lS-d9YVK3OG

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 scrapfly-finance-history-historical-price-data-by-symbol-194580bd -d '<json body>'
```

Example prompt: Can you pull the historical price data for AAPL from ScrapFly's finance history endpoint?

## When to prefer this

Use this endpoint when you need historical price or trading data for a financial symbol and want pay-per-request access via x402 on the Base blockchain, without a subscription. Suitable for spot lookups rather than bulk or streaming data needs.

## Known failure modes

- Missing or invalid symbol returns an error or empty data object
- Unknown or unsupported ticker symbols may yield no data
- Payment failure via x402 on Base chain results in 402 response and no data returned
- Upstream data source unavailability may result in success: false with no data

## How this service works

69 endpoints for data, content generation, and web scraping. Pay per request via x402 on Base chain.

## Output

Returns a success boolean and a data object containing historical financial data (e.g. price history, OHLCV records) for the requested symbol.

## 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/scrapfly-finance-history-historical-price-data-by-symbol-194580bd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from test-scrapfly.orbonomy.xyz](https://www.zero.xyz/host/test-scrapfly.orbonomy.xyz/llms.txt)
