# Crypto to Fiat Currency Converter

> Crypto to Fiat Currency Converter is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Converts a cryptocurrency amount to a fiat currency value using live CoinGecko prices, returning the converted value, exchange rate, and timestamp.

## Facts

- Endpoint: GET https://intel.rallylive.ca/data/exchange-crypto
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crypto-to-fiat-currency-converter-e5baca94
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SChYxdCX7xirOws0XjdDm

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 crypto-to-fiat-currency-converter-e5baca94
```

Example prompt: How much is 0.5 BTC worth in USD right now? Give me the current rate and converted value.

## When to prefer this

Use this endpoint when you need a quick, real-time crypto-to-fiat conversion with a clear rate and timestamp, especially for major cryptocurrencies (BTC, ETH, USDC, SOL, etc.) and major fiat currencies (USD, EUR, GBP, CAD, JPY). It is ideal for lightweight agent workflows that need a single conversion per call at low cost ($0.01). Prefer it over full exchange-rate APIs when the use case is crypto-specific and the agent environment supports x402 micropayments.

## Known failure modes

- Unsupported cryptocurrency symbol returns an error or null result
- Unsupported fiat currency code returns an error
- Missing or malformed query input returns a 400-level error
- CoinGecko price feed unavailable causes service degradation
- Micropayment not fulfilled results in 402 Payment Required response

## How this service works

Crypto to fiat conversion: '0.5 btc to usd' or '1000 usdc to eur' at the current CoinGecko price, returning the value, rate and time. Supports USD, EUR, GBP, CAD, JPY and other major fiats. $0.01 per conversion.

## Output

Returns the converted fiat value for the given crypto amount, the exchange rate used (crypto price in fiat), and the timestamp of the conversion based on the current CoinGecko market price.

## 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": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/crypto-to-fiat-currency-converter-e5baca94/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.rallylive.ca](https://www.zero.xyz/host/intel.rallylive.ca/llms.txt)
