# Bolt Exchange Rate Lookup

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

Converts a currency amount from one currency to another by looking up the current exchange rate

## Facts

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

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-19f73af4 -d '<json body>'
```

Example prompt: What is the current exchange rate from USD to EUR, and how much would 500 USD be in euros?

## When to prefer this

Use this endpoint when you need a quick, pay-per-request currency conversion or exchange rate lookup without setting up a dedicated forex API subscription. Ideal for AI agents that occasionally need to convert amounts between currencies as part of broader financial calculations or data enrichment workflows.

## Known failure modes

- Unsupported or invalid currency code returns an error or empty data
- Amount field missing or non-numeric causes request failure
- Unknown currency pair not supported by the underlying rate provider
- Network timeout or upstream rate provider outage returns a failed response
- Payment not processed (402) if USDC payment is not attached to the request

## 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 data object containing the exchange rate and converted amount, along with a success boolean indicating whether the lookup was successful.

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