# Cravvol Stock Financial Query

> Cravvol Stock Financial Query is a paid API for AI agents from cravvol.vercel.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Answers financial queries about stocks by searching and scraping relevant web data, paid per request via x402/USDC

## Facts

- Endpoint: POST https://cravvol.vercel.app/api/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/cravvol-stock-financial-query-21a5642f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oHILk0Ujs5Icm12kfKHAV

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 cravvol-stock-financial-query-21a5642f -d '<json body>'
```

Example prompt: What is the current stock price and recent performance of Apple (AAPL)?

## When to prefer this

Choose this endpoint when you need on-demand financial or stock market data without setting up API keys or subscriptions — useful for agents that need pay-per-use stock lookups via crypto micropayments (USDC/x402). Best for ad-hoc financial queries rather than high-volume or real-time streaming data needs.

## Known failure modes

- Missing required 'query' field returns validation error
- Vague or unrecognized financial query may return empty or low-quality data
- Payment failure via x402 results in 402 Payment Required response
- Rate limiting or upstream scraping failures may cause timeouts or errors
- Service unavailability on Vercel hosting may return 500 errors

## 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 query, such as stock prices, company financials, or market data retrieved via web search and scraping.

## 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/cravvol-stock-financial-query-21a5642f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cravvol.vercel.app](https://www.zero.xyz/host/cravvol.vercel.app/llms.txt)
