# Orbonomy Finance Data API

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

Returns financial data for a given stock or asset symbol via pay-per-call API

## Facts

- Endpoint: POST https://www.orbonomy.xyz/api/data/finance
- 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-finance-data-api-4fd18300
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nkE9QCABZ8115XTtMwtqr

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-finance-data-api-4fd18300 -d '<json body>'
```

Example prompt: Can you pull the financial data for AAPL from Orbonomy's finance endpoint?

## When to prefer this

Choose this endpoint when you need quick, pay-per-call financial data for a specific stock or asset symbol without a subscription commitment, and are operating within an x402-enabled payment workflow.

## Known failure modes

- Missing or invalid symbol field returns a validation error
- Unknown or unsupported symbol may return success:false or empty data
- Payment failure via x402 protocol results in 402 response and no data returned
- Network timeout if Orbonomy backend is unavailable

## How this service works

50+ pay-per-call API endpoints across accommodation, AI, content, fact-checking, and data services. Powered by x402 protocol.

## Output

Returns a JSON object with a success boolean and associated financial data for the requested symbol, such as price, market metrics, or other financial details tied to the queried asset.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "symbol"
 ],
 "properties": {
  "symbol": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orbonomy-finance-data-api-4fd18300/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.orbonomy.xyz](https://www.zero.xyz/host/www.orbonomy.xyz/llms.txt)
