# Stock Financial Query API

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

Accepts a natural language financial query and returns stock market data or financial information via a pay-per-request model using USDC.

## Facts

- Endpoint: POST https://cr4vvol.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/stock-financial-query-api-8baa3ba9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0yjzDffgLQDx5RolsiqYV

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 stock-financial-query-api-8baa3ba9 -d '<json body>'
```

Example prompt: What is the current stock price and market cap for Tesla? I need the latest financial data on it.

## When to prefer this

Use this endpoint when you need quick, pay-per-use financial or stock market data lookups without requiring API keys or subscriptions. Ideal for AI agents that need on-demand stock information with micropayment billing via USDC on x402.

## Known failure modes

- Missing required 'query' field returns validation error
- Ambiguous or unsupported financial query may return empty or incomplete data
- Payment failure via x402 results in 402 Payment Required response
- Upstream data source unavailable may result in 500 error or empty data object

## 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 prices, market metrics, or other financial figures.

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