# Vibes API Hub - Currency Exchange Converter

> Vibes API Hub - Currency Exchange Converter is a paid API for AI agents from vibes-coral-tau.vercel.app, paid per call via x402, $0.05793/call, status unknown (last checked 2026-09-14).

Converts a specified amount from one currency (fiat or crypto) to another and returns the converted value

## Facts

- Endpoint: POST https://vibes-coral-tau.vercel.app/api/exchange-convert
- Price: $0.05793/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vibes-api-hub-currency-exchange-converter-224c3f35
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PyF_xuX26HltFp8YIQ8Fz

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 vibes-api-hub-currency-exchange-converter-224c3f35 -d '<json body>'
```

Example prompt: Convert 250 USD to EUR for me and tell me how much I'd get.

## When to prefer this

Use this endpoint when you need a quick pay-per-call currency or crypto conversion without requiring a subscription, especially within an automated agent workflow that only occasionally needs exchange rate lookups. Suitable for both fiat-to-fiat and crypto-to-fiat conversions via a single unified API.

## Known failure modes

- Unsupported currency code returns an error or empty result
- Invalid or non-numeric amount string may cause a parsing error
- Missing required fields (from, to, or amount) will result in a 400-level error
- Stale or unavailable exchange rate data may cause a failure for less common pairs

## How this service works

All-in-one API hub: Social Media, Jobs, Finance, Crypto, and Tools. Pay-per-call with x402 protocol on Base chain.

## Output

Returns an object containing the converted amount and likely the exchange rate used for the conversion between the specified currency pair and input amount.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "to": {
   "type": "string"
  },
  "from": {
   "type": "string"
  },
  "amount": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vibes-api-hub-currency-exchange-converter-224c3f35/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vibes-coral-tau.vercel.app](https://www.zero.xyz/host/vibes-coral-tau.vercel.app/llms.txt)
