Skip to main content

CFX to USD Exchange Rate

CFX (CFX) to USD (USD)

Current exchange rate

1 CFX = 0.057922 USD

As of May 22, 2026 · Source: ECB / CBR

30-day low
0.052162
30-day high
0.075618
30-day avg
0.061187
30-day change
+11.04%

Get CFX to USD Rate via API

Fetch the live CFX to USD exchange rate with a single HTTP request. XRates API returns clean JSON with rate data sourced from the European Central Bank (ECB), Central Bank of Russia (CBR) and other official providers.

cURL

curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://xratesapi.com/api/v1/latest?base=CFX&symbols=USD"

Python

import requests
r = requests.get(
"https://xratesapi.com/api/v1/latest",
params={"base": "CFX", "symbols": "USD"},
headers={"Authorization": "Bearer YOUR_API_KEY"},
)
rate = r.json()["rates"]["USD"]

JavaScript (Node.js)

const res = await fetch(
"https://xratesapi.com/api/v1/latest?base=CFX&symbols=USD",
{ headers: { Authorization: "Bearer YOUR_API_KEY" } }
);
const { rates } = await res.json();
console.log(rates.USD);

CFX to USD Exchange Rate History

Last 29 days of CFX to USD rates. Fetch full historical data via the /api/v1/historical endpoint.

Historical CFX to USD exchange rate for the last 29 days
Date 1 CFX = X USD
May 22, 2026 0.057922
May 21, 2026 0.058353
May 20, 2026 0.058154
May 19, 2026 0.058885
May 18, 2026 0.059959
May 15, 2026 0.075618
May 14, 2026 0.068284
May 13, 2026 0.06821
May 12, 2026 0.065331
May 11, 2026 0.065679
May 8, 2026 0.064886
May 7, 2026 0.063485
May 6, 2026 0.062753
May 5, 2026 0.061323
May 4, 2026 0.061852
Apr 30, 2026 0.058086
Apr 29, 2026 0.061465
Apr 28, 2026 0.059467
Apr 27, 2026 0.062218
Apr 24, 2026 0.060637
Apr 23, 2026 0.057594
Apr 22, 2026 0.060087
Apr 21, 2026 0.058563
Apr 20, 2026 0.058702
Apr 17, 2026 0.067573
Apr 16, 2026 0.0593
Apr 15, 2026 0.053487
Apr 14, 2026 0.054396
Apr 13, 2026 0.052162

Frequently Asked Questions

What is the current CFX to USD exchange rate?

As of May 22, 2026, 1 CFX (CFX) equals 0.057922 USD (USD). Rates are sourced from the European Central Bank (ECB), Central Bank of Russia (CBR) and other trusted providers.

How can I get CFX to USD rate via API?

Use the XRates REST API endpoint GET /api/v1/latest?base=CFX&symbols=USD with your Bearer token. You'll receive JSON containing the latest CFX to USD rate.

Is the CFX to USD API free?

Yes. XRates API has a free tier with 100 requests per month — no credit card required. Paid plans start at $9/month for 10,000 requests.

How often are CFX to USD rates updated?

Exchange rates are refreshed every 4 hours from the European Central Bank, Central Bank of Russia and other official sources.

Get CFX to USD Rate in Your App

Sign up for free and receive an API key instantly. 100 requests/month, no credit card required.

Get Free API Key