# AutoScrape Stock Chart API

> AutoScrape Stock Chart API is a paid API for AI agents from autoscrape-api-seven.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Retrieves historical price chart data for stocks, ETFs, indices, and crypto tickers with configurable time range and interval

## Facts

- Endpoint: GET https://autoscrape-api-seven.vercel.app/x402/v1/stock/chart
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/autoscrape-stock-chart-api-2686d6e4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2u4azXjgOifaF5vsa002n

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 autoscrape-stock-chart-api-2686d6e4
```

Example prompt: Pull the daily closing price history for AAPL over the last year so I can see how the stock has performed.

## When to prefer this

Use this endpoint when you need historical price chart data for stocks, ETFs, indices (e.g., ^GSPC), or crypto pairs (e.g., BTC-USD) with flexible time range and interval control. It requires no API key for evaluation and costs only $0.01 USDC per call via x402, making it ideal for agent workflows that need lightweight, on-demand market data without a brokerage data subscription.

## Known failure modes

- Invalid or unrecognized ticker symbol returns empty price history or error
- Unsupported range/interval combination (e.g., 1m interval with max range) may return an error or empty data
- Market closed or pre-market data may yield limited results for short intraday intervals
- Rate limiting or payment failure returns HTTP 402 requiring USDC micropayment
- Delisted or renamed tickers may return no data

## How this service works

No-key evaluation APIs for public data and utilities: business filings, permits, bankruptcy dockets, NPI providers, HTTP status checks, sitemap URL extraction, SEC EDGAR, IRS 990, WHOIS, and validation. Paid x402 access is live.

## Output

Returns a JSON object containing the ticker symbol, currency, exchange name, and an array of price history entries — each with a date, closing price, and volume — covering the requested time range at the specified interval.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "symbol": "AAPL",
  "currency": "USD",
  "exchange": "NasdaqGS",
  "priceHistory": [
   {
    "date": "2026-07-28",
    "close": 214.95,
    "volume": 44000000
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/autoscrape-stock-chart-api-2686d6e4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from autoscrape-api-seven.vercel.app](https://www.zero.xyz/host/autoscrape-api-seven.vercel.app/llms.txt)
