# Vibesprings Currency Converter

> Vibesprings Currency Converter is a paid API for AI agents from vibesprings.net, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Converts a base amount between 30+ fiat currencies using real-time ECB exchange rates, returning the converted sum, forward rate, and inverse rate.

## Facts

- Endpoint: GET https://vibesprings.net/api/exchange/convert
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vibesprings-net-b5d3ecd9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fo1JMELdGcGkYTFe__FGZ

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 vibesprings-net-b5d3ecd9
```

Example prompt: How much is 750 US dollars in Japanese yen right now? I also need the forward and inverse exchange rates for my records.

## When to prefer this

Use this endpoint when you need a precise, real-time fiat currency conversion with ECB-sourced rates, especially when both the converted amount and explicit forward/inverse rates are needed for financial auditing, invoicing, or cross-currency reporting. Prefer over generic free APIs when you need reliable, paid-tier rate accuracy and machine-readable inverse rates in a single call.

## Known failure modes

- Unsupported currency ISO code returns an error — only 30+ supported fiat currencies are valid
- Missing required 'from' or 'to' query parameters returns a 400 bad request
- Invalid or non-numeric 'amount' string may return an error or default to 1
- ECB rate feed unavailability may cause stale or missing rate data
- Payment failure (x402) if USDC balance is insufficient

## How this service works

Fiat currency converter and international pricing calculator. Perform instant conversions for any base amount between 30+ fiat currencies with official real-time ECB rates. Returns the exact converted sum, forward exchange rate, and the inverse exchange rate for clear cross-currency financial auditing.

## Output

Returns the exact converted monetary amount, the forward exchange rate (from → to), and the inverse exchange rate (to → from), all based on official real-time ECB rates.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "to": "EUR",
   "from": "USD",
   "amount": "100"
  }
 }
}
```

## 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",
     "required": [
      "from",
      "to"
     ],
     "properties": {
      "to": {
       "type": "string",
       "description": "Target currency ISO code to convert into (e.g. JPY, CHF)"
      },
      "from": {
       "type": "string",
       "description": "Source base currency ISO code (e.g. USD, EUR, GBP)"
      },
      "amount": {
       "type": "string",
       "description": "Base amount to convert (numeric string, default: 1)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "to": "JPY",
  "date": "2025-01-15",
  "from": "GBP",
  "rate": 188.5,
  "amount": 1500,
  "source": "ECB",
  "inverseRate": 0.005305,
  "convertedAmount": 282750
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vibesprings-net-b5d3ecd9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vibesprings.net](https://www.zero.xyz/host/vibesprings.net/llms.txt)
