# Orbonomy Crypto Price Lookup

> Orbonomy Crypto Price Lookup 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).

Fetches current cryptocurrency prices in one or more fiat or crypto currencies via the Orbonomy unified API platform

## Facts

- Endpoint: POST https://app.orbonomy.xyz/api/data/crypto
- 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-crypto-price-lookup-5447a90f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ums9hx3r-vA8SpZG0Cw_X

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-crypto-price-lookup-5447a90f -d '<json body>'
```

Example prompt: What are the current prices of bitcoin and ethereum in USD and EUR right now?

## When to prefer this

Use this endpoint when you need quick, pay-per-call cryptocurrency price lookups without a subscription, especially when already integrating with the Orbonomy unified API platform for other services. Good for spot checks of coin prices in multiple currencies simultaneously.

## Known failure modes

- Invalid coin IDs return empty or error response
- Unsupported vs_currency values may cause failures
- Payment failure via x402 protocol blocks the request
- Rate limiting or upstream data provider outage returns error
- Malformed request body missing required fields returns 400

## 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 cryptocurrency price data keyed by coin ID and vs_currency pairs, showing real-time market prices.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "ids",
  "vs_currencies"
 ],
 "properties": {
  "ids": {
   "type": "string"
  },
  "vs_currencies": {
   "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-crypto-price-lookup-5447a90f/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)
