# ScrapFly Stock Data Crawl

> ScrapFly Stock Data Crawl is a paid API for AI agents from test-scrapfly.orbonomy.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

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

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/crawl/stock
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scrapfly-stock-data-crawl-8087a4f7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_owC8MbLDDAMSIQfH2i8LY

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-8087a4f7 -d '<json body>'
```

Example prompt: Can you pull the stock data for AAPL — I want to see whatever market info you can scrape for it?

## When to prefer this

Use this endpoint when you need to programmatically retrieve stock market data for a specific company or ticker symbol via web scraping, especially when direct financial API access is unavailable or cost-prohibitive, and you are operating in an x402-enabled agent environment on the Base chain.

## Known failure modes

- Query not found or unrecognized ticker returns success: false
- Scraping target site blocks the request, returning empty or failed data
- Malformed or missing query parameter returns validation error
- Payment failure on Base chain prevents request from being processed
- Rate limiting or upstream site changes cause incomplete 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 JSON object with a success boolean and a data object containing scraped stock market information for the queried ticker or company, sourced via web crawling.

## 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-8087a4f7/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)
