# x402.outpimp.com Currency Exchange Rate API

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

Returns the live exchange rate between any two ISO 4217 currency codes via a paid API call

## Facts

- Endpoint: POST https://x402.outpimp.com/getCurrencyRate
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-outpimp-com-currency-exchange-rate-api-0110e330
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_htDMr8oIQ-hAjQxJrRG0u

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 x402-outpimp-com-currency-exchange-rate-api-0110e330 -d '<json body>'
```

Example prompt: What's the live exchange rate from USD to EUR right now?

## When to prefer this

Choose this endpoint when an AI agent needs a real-time forex rate that cannot be inferred from training data, especially for financial calculations, invoicing, pricing, or travel planning involving two specific ISO 4217 currencies. It is a paid microtransaction API ($0.01 USDC) suitable for on-demand lookups rather than bulk batch rate fetching.

## Known failure modes

- 400 Bad Request if 'from' or 'to' parameter is missing
- Invalid or unsupported ISO 4217 currency code may return an error or unexpected result
- Network latency or upstream data source outages could cause delayed or failed responses
- Stale rate possible if upstream provider has a lag, though data is advertised as live

## How this service works

Live currency exchange rate API. Returns the current exchange rate between any two ISO 4217 currency codes (e.g. USD to EUR) — live external data an LLM cannot know on its own.

## Output

Returns the current live exchange rate as a numeric value for the requested currency pair (e.g., 1 USD = 0.92 EUR). Errors with HTTP 400 if either the 'from' or 'to' currency code is missing.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "to": {
   "type": "string",
   "description": "Target currency code, e.g. \"EUR\"."
  },
  "from": {
   "type": "string",
   "description": "Source currency code, e.g. \"USD\"."
  }
 }
}
```

## More

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