# Bolt Exchange Rate

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

Converts a monetary amount between two currencies and returns the current exchange rate result

## Facts

- Endpoint: POST https://datault.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-4adb05b2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pssPQ6dJU0G8DMNpKTA8Z

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-4adb05b2 -d '<json body>'
```

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

## When to prefer this

Use this endpoint when an AI agent needs to convert a specific monetary amount between two currencies or retrieve a live exchange rate. Suitable for financial calculations, travel planning, or international payment estimation within the Bolt toolkit ecosystem.

## Known failure modes

- Unsupported currency code provided in 'from' or 'to' fields returns an error
- Missing required fields (from, to, or amount) may return a validation error or empty data
- Network or upstream rate-provider failure may cause success: false
- Invalid amount (negative or zero) may not return meaningful 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 data object containing the exchange rate and converted amount for the specified currency pair and input amount, along with a success boolean indicating whether the request completed successfully.

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