# Orbonomy Crawl – Currency Rate Lookup

> Orbonomy Crawl – Currency Rate Lookup is a paid API for AI agents from crawl.orbonomy.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a currency exchange rate between two specified currencies, paid per-request in USDC via x402.

## Facts

- Endpoint: POST https://crawl.orbonomy.xyz/api/rate
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-crawl-currency-rate-lookup-8455c7b1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gmMh8f9lW8dwwprAYWWol

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-crawl-currency-rate-lookup-8455c7b1 -d '<json body>'
```

Example prompt: What is the current exchange rate from USD to EUR?

## When to prefer this

Use this endpoint when an AI agent needs a quick, pay-per-use currency exchange rate lookup without needing an API key or subscription. Ideal for one-off conversions where signing up for a forex service is impractical.

## Known failure modes

- Invalid or unsupported currency codes return an error or empty data
- Payment failure via x402 results in 402 response and no data
- Network timeout if the underlying rate source is slow
- Unsupported currency pair may return success:false

## How this service works

Web scraping and search for AI agents. No auth, no subscriptions. Pay per request in USDC via x402.

## Output

Returns a JSON object with a 'data' field containing the exchange rate information and a 'success' boolean indicating whether the lookup succeeded. Each call costs $0.01 USDC, paid via x402.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "to": {
   "type": "string",
   "description": "To currency"
  },
  "from": {
   "type": "string",
   "description": "From currency"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orbonomy-crawl-currency-rate-lookup-8455c7b1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from crawl.orbonomy.xyz](https://www.zero.xyz/host/crawl.orbonomy.xyz/llms.txt)
