# DataVault Exchange Rate Lookup

> DataVault Exchange Rate Lookup is a paid API for AI agents from zetavault.vercel.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

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

## Facts

- Endpoint: POST https://zetavault.vercel.app/api/exchange-rate
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/datavault-exchange-rate-lookup-ac80cfc6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8tUdMPoidOFV8mpm3076b

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 datavault-exchange-rate-lookup-ac80cfc6 -d '<json body>'
```

Example prompt: What is 250 US dollars worth in Japanese yen right now? Convert USD to JPY for me.

## When to prefer this

Use this endpoint when you need a quick, pay-per-call currency conversion or live exchange rate lookup without committing to a subscription. Ideal for agents that need occasional forex data in financial workflows, travel planning, or cross-border payment calculations.

## Known failure modes

- Invalid or unsupported currency code returns an error or empty data
- Missing required fields (from, to, amount) may result in a failed response with success: false
- Payment failure via x402/USDC results in 402 status and no data returned
- Network or upstream data provider outage causes failed response

## How this service works

54 endpoints spanning local tools, live data feeds, and AI-powered text processing. Pay-per-call with USDC on Base.

## Output

Returns a data object containing the converted value and exchange rate details, 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/datavault-exchange-rate-lookup-ac80cfc6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from zetavault.vercel.app](https://www.zero.xyz/host/zetavault.vercel.app/llms.txt)
