# Orbonomy Stock Financial Query

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

Fetches stock and financial data by accepting a natural language financial query and returning structured market information

## Facts

- Endpoint: POST https://crawl.orbonomy.xyz/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/orbonomy-stock-financial-query-ad19794d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yV7uULWDaJwIxvVdHcw8c

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 orbonomy-stock-financial-query-ad19794d -d '<json body>'
```

Example prompt: What is the current stock price and basic financial data for Apple (AAPL)?

## When to prefer this

Choose this endpoint when you need quick, pay-per-use stock or financial data without API key registration or subscriptions. Best for lightweight, ad-hoc financial lookups where you want to avoid managing credentials and prefer micro-payment access via USDC x402 protocol.

## Known failure modes

- Invalid or unrecognized query returns empty or null data object
- Payment failure via x402 results in 402 response before data is returned
- Ambiguous ticker or company name may return irrelevant or mismatched data
- Network or scraping errors may result in success:false with no data
- Rate limiting or upstream source unavailability may cause 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 query, such as stock prices, market metrics, or other financial data points 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/orbonomy-stock-financial-query-ad19794d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from crawl.orbonomy.xyz](https://www.zero.xyz/host/crawl.orbonomy.xyz/llms.txt)
