# Orthogonal Exchange Rate Currency Converter

> Orthogonal Exchange Rate Currency Converter is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

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

## Facts

- Endpoint: GET https://x402.orthogonal.com/exchange-rates/v1/convert
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orthogonal-exchange-rate-currency-converter-df239a53
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ha0vXfBwnWbsZX0VB021G

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 orthogonal-exchange-rate-currency-converter-df239a53
```

Example prompt: Can you convert 500 US dollars to Japanese yen for me?

## When to prefer this

Choose this endpoint when you need a quick, lightweight currency conversion for a specific amount between two currency codes. It is well-suited for agents handling travel budgeting, international invoicing, e-commerce price display, or any workflow where a numeric amount must be expressed in a different currency. Prefer this over a full forex data feed when you only need a single point-in-time conversion rather than historical rates or bulk conversions.

## Known failure modes

- Invalid or unsupported currency code returns an error (e.g. 'XXX' is not a valid ISO 4217 code)
- Missing required base or target query parameter results in a 400 bad request
- Non-numeric amount string may cause a validation error
- Stale or unavailable exchange rate data may result in a service error
- Network timeout or upstream rate-feed outage returns a 5xx error

## How this service works

Convert an amount from one currency to another.

## Output

Returns the converted monetary amount in the target currency, along with relevant exchange rate data for the specified base/target currency pair and input amount.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "base": {
       "type": "string",
       "description": "Base currency code"
      },
      "amount": {
       "type": "string",
       "description": "Amount to convert (defaults to 1)"
      },
      "target": {
       "type": "string",
       "description": "Target currency code"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orthogonal-exchange-rate-currency-converter-df239a53/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
