# Orbonomy Crypto Price Lookup

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

Fetches current cryptocurrency prices for one or more coins in specified fiat or crypto currencies

## Facts

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

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-2a1e2090 -d '<json body>'
```

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

## When to prefer this

Use this endpoint when you need real-time or near-real-time cryptocurrency price data for one or more coins and want to pay per call without a subscription. Prefer this over dedicated exchange APIs when you need a simple, unified lookup and are already operating within the Orbonomy x402 payment ecosystem.

## Known failure modes

- Invalid coin IDs result in missing or empty price data
- Unsupported vs_currency values may cause errors or empty responses
- Payment failure via x402 returns 402 before any data is returned
- Network timeout if upstream price provider is slow
- 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 flag and price data for the requested cryptocurrency IDs expressed in the specified vs_currencies (e.g. usd, eur, btc).

## 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-2a1e2090/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)
