# Crawl Stock Data Lookup

> Crawl Stock Data Lookup is a paid API for AI agents from crawol.vercel.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Retrieves financial stock data by processing a natural language financial query via a pay-per-request API using x402/USDC.

## Facts

- Endpoint: POST https://crawol.vercel.app/api/stock
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crawl-stock-data-lookup-6fe77100
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qp_w8NEjNeJtbcvohPvtZ

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 crawl-stock-data-lookup-6fe77100 -d '<json body>'
```

Example prompt: Can you look up the current stock price and basic financial data for Apple (AAPL) — just send a query like 'AAPL current stock price and market cap' to the stock endpoint.

## When to prefer this

Choose this endpoint when you need quick, pay-per-use stock or financial data lookups without committing to a subscription API. It is well-suited for agents that need occasional financial data on demand and pay via USDC through the x402 protocol. Prefer it over subscription-based financial APIs when query volume is low or sporadic.

## Known failure modes

- Payment failure if USDC balance is insufficient — payment required before data is returned
- Ambiguous or unsupported financial query returns empty or unhelpful data object
- Query for non-existent ticker or company may return null or empty data
- Network or scraping timeout results in failed response with success: false
- Rate limiting or upstream source unavailability causes temporary failures

## How this service works

Web scraping and search for AI agents. No auth, no subscriptions. Pay per request in USDC via x402.

## Output

Returns a JSON object with a success boolean and a data object containing financial information relevant to the submitted query, such as stock price, market cap, or other financial metrics scraped from the web.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/crawl-stock-data-lookup-6fe77100/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from crawol.vercel.app](https://www.zero.xyz/host/crawol.vercel.app/llms.txt)
