# Orbonomy Finance Data API

> Orbonomy Finance Data API is a paid API for AI agents from api.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 a pay-per-call REST endpoint

## Facts

- Endpoint: POST https://api.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-6b2b23d6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_569yihGwltA4_YxPFJg6E

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-6b2b23d6 -d '<json body>'
```

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

## When to prefer this

Use this endpoint when you need on-demand, pay-per-call financial data for a specific ticker symbol without committing to a subscription, especially in workflows where financial lookups are infrequent or cost-sensitive.

## 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 402 Payment Required response
- Service unavailability returns 5xx error
- Rate limiting or quota exceeded may return 429

## 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 attributes for the given ticker.

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