# ScrapFly Stock Data Crawl

> ScrapFly Stock Data Crawl is a paid API for AI agents from scravfly.vercel.app, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-15).

Fetches stock market data for a given query (ticker, company name, or topic) via web scraping

## Facts

- Endpoint: POST https://scravfly.vercel.app/api/crawl/stock
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scrapfly-stock-data-crawl-9bfe8100
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CKU7stl1zUIOQcJ1EAO53

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-stock-data-crawl-9bfe8100 -d '<json body>'
```

Example prompt: Can you pull the latest stock data for Apple (AAPL) — I need the current price and any available market info?

## When to prefer this

Use this endpoint when you need quick stock data lookups for individual tickers or company names and want a pay-per-request model on Base chain via x402. Prefer this over heavyweight financial data APIs when you need lightweight, on-demand stock queries without a subscription. Note: this is a scraping-based endpoint, so real-time accuracy may vary compared to official market data feeds.

## Known failure modes

- Invalid or unrecognized ticker/company query returns success: false with no data
- Underlying web source unavailable causes scrape failure
- Rate limiting or payment failure (x402) results in no response
- Ambiguous query may return data for wrong ticker
- Stale cached data may not reflect real-time prices

## How this service works

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

## Output

Returns a JSON object with a success boolean and a data object containing scraped stock market information such as price, ticker details, and other available financial metrics for the queried stock or company.

## Request schema (JSON Schema)

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

## 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-stock-data-crawl-9bfe8100/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scravfly.vercel.app](https://www.zero.xyz/host/scravfly.vercel.app/llms.txt)
