# Orbonomy Finance Data API

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

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

## Facts

- Endpoint: POST https://orbonomy.xyz/api/data/finance
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-finance-data-api-b982b405
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__wAWq2ooampvxy8liUDrz

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-b982b405 -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 pay-per-call financial data lookups for a specific ticker or asset symbol without committing to a subscription, and when x402 micropayment compatibility is required.

## Known failure modes

- Missing required 'symbol' field returns a 400 error
- Invalid or unrecognized symbol may return success:false or empty data
- Payment failure via x402 protocol results in 402 Payment Required
- Service unavailability returns 5xx errors
- Rate limiting or quota exceeded may block requests

## 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 financial data associated with the provided symbol, such as price, market metrics, or other asset-level 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-b982b405/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from orbonomy.xyz](https://www.zero.xyz/host/orbonomy.xyz/llms.txt)
