# Orbonomy Crypto Price Data

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

Fetches current cryptocurrency prices for one or more coin IDs against specified fiat or crypto currencies

## Facts

- Endpoint: POST https://backup-v2api.orbonomy.xyz/api/data/crypto
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-crypto-price-data-147bf272
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CsPtwrDilgsCdY8d-2p-_

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-data-147bf272 -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 pay-per-call cryptocurrency price lookups without a subscription, particularly in x402-compatible micropayment workflows. Prefer this over subscription APIs when usage is sporadic and cost control via per-call USDC payment is desired.

## Known failure modes

- Invalid coin IDs return error or empty data
- Unsupported vs_currency returns error
- Missing required fields (ids or vs_currencies) returns 400 or validation error
- Endpoint downtime returns 5xx
- Payment failure via x402 protocol blocks access

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

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