# Orbonomy Finance Data API

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

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

## Facts

- Endpoint: POST https://app.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-8d0723a5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RhVkEMGuiBEGcPpf0j_F3

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-8d0723a5 -d '<json body>'
```

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

## When to prefer this

Use this endpoint when you need quick, pay-per-call financial data lookups for a specific stock or asset symbol without a subscription, especially in x402-enabled agent workflows on the Orbonomy platform.

## Known failure modes

- Missing required 'symbol' field returns a validation error
- Invalid or unrecognized ticker symbol may return empty data or an error
- Payment failure via x402 protocol results in HTTP 402 and no data returned
- Network timeout or server error returns a 5xx response

## How this service works

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

## Output

A JSON object with a success boolean and associated financial data for the queried symbol, such as price, market metrics, or other asset information.

## 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-8d0723a5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from app.orbonomy.xyz](https://www.zero.xyz/host/app.orbonomy.xyz/llms.txt)
