# Bolt Exchange Rate Lookup

> Bolt Exchange Rate Lookup is a paid API for AI agents from deltadata.orbonomy.xyz, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Converts a monetary amount from one currency to another using live exchange rates

## Facts

- Endpoint: POST https://deltadata.orbonomy.xyz/api/exchange-rate
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bolt-exchange-rate-lookup-c1d8b808
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_i_s6McGA4cS5g0vHadaej

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 bolt-exchange-rate-lookup-c1d8b808 -d '<json body>'
```

Example prompt: How much is 500 USD in Japanese yen right now? Convert it using the Bolt exchange rate tool.

## When to prefer this

Choose this endpoint when you need quick, pay-per-request currency conversion or exchange rate lookups without a subscription, especially within an AI agent pipeline that already uses x402/USDC micropayments. Suitable for one-off conversions or lightweight financial data enrichment.

## Known failure modes

- Invalid or unsupported currency code returns error or empty data
- Missing required fields (from, to, amount) may cause validation failure
- Network timeout or service unavailability returns non-200 response
- Amount of zero or negative value may return unexpected results

## How this service works

Utility toolkit for AI agents. 54 endpoints — tools, data, and AI processing. Pay per request in USDC via x402.

## Output

Returns a JSON object with a 'success' boolean and a 'data' object containing the converted amount and exchange rate details for the requested currency pair and input amount.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "to": {
   "type": "string"
  },
  "from": {
   "type": "string"
  },
  "amount": {
   "type": "number"
  }
 }
}
```

## 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/bolt-exchange-rate-lookup-c1d8b808/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from deltadata.orbonomy.xyz](https://www.zero.xyz/host/deltadata.orbonomy.xyz/llms.txt)
