# Bolt Exchange Rate

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

Converts a monetary amount from one currency to another and returns the exchange rate

## Facts

- Endpoint: POST https://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-377388bc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0pnt9WKZSuJM_WpNulN-N

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-377388bc -d '<json body>'
```

Example prompt: What's the current exchange rate from USD to EUR, and how much would 250 dollars be in euros?

## When to prefer this

Use this endpoint when you need a quick, pay-per-use currency conversion or exchange rate lookup without setting up a dedicated forex API subscription. Best for AI agents that need occasional currency conversions as part of a broader workflow, especially when already using the Bolt toolkit for other utilities.

## Known failure modes

- Unsupported or invalid currency code returns an error or empty data object
- Missing required 'from' or 'to' fields result in a failed request
- Network or upstream data provider outage causes success: false response
- Invalid amount (negative or non-numeric) may cause a validation error

## 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 converted amount and exchange rate details for the specified currency pair, along with a success boolean indicating whether the lookup succeeded.

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