# Orbonomy Crypto Price Lookup

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

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

## Facts

- Endpoint: POST https://www.orbonomy.xyz/api/data/crypto
- 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-crypto-price-lookup-74f61457
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ckfqBhBr2_4WpSYsrDFKz

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-74f61457 -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 real-time cryptocurrency price lookups via a pay-per-call model at $0.05 USDC per call using the x402 payment protocol, especially when already integrated with Orbonomy's unified API platform for other data services.

## Known failure modes

- Invalid coin IDs return an error or empty price object
- Unsupported vs_currency values may cause a 400 or empty response
- Payment failure via x402 protocol blocks the request
- Upstream data provider outage causes stale or missing prices
- Malformed request body missing required fields returns validation error

## 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 likely a nested map of coin IDs to their prices in the requested vs_currencies, e.g. {bitcoin: {usd: 60000, eur: 55000}}.

## 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-74f61457/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)
