- 18 Aug, 2026
- Currency API
- by Admin
Best Currency API for Developers — 166 Currencies, Free Tier Available
What is DecoderFX?
DecoderFX is a live currency conversion REST API built for developers worldwide that need accurate, real-time exchange rates. Most currency APIs either ignore African currencies or charge premium prices for them. DecoderFX changes that.
With support for 166 currencies including NGN, GHS, KES, ZAR, ETB and all major global currencies, DecoderFX gives you accurate rates updated every hour — sourced from central banks and live forex feeds.
Why African Developers Need DecoderFX
If you have ever built a fintech app, e-commerce platform, or payment system and needed reliable currency conversion, you know the pain. Most popular APIs either:
- Do not support NGN, GHS, or KES properly
- Charge expensive monthly fees just to access African currencies
- Have outdated rates that do not reflect real market conditions
DecoderFX was built to solve exactly this problem.
Key Features
- 166 currencies supported — including all major African currencies
- Rates updated every hour — always accurate, never stale
- Simple REST API — integrate in under 5 minutes
- Free tier available — 100 requests per day, no credit card required
- Affordable paid plans — from $5/month for 1,000 requests/day
- Convert any pair — not just USD base, convert NGN to GHS directly
API Endpoints
DecoderFX provides three simple endpoints:
1. Convert Currency
GET https://api.daveedecoder.org/convert?from=USD&to=NGN&amount=100
Header: x-api-key: YOUR_KEY
Response:
{"from":"USD","to":"NGN","amount":100,"rate":1358.70,"result":135870.43}
2. Get All Rates
GET https://api.daveedecoder.org/rates?base=USD
Header: x-api-key: YOUR_KEY
3. List All Currencies
GET https://api.daveedecoder.org/currencies
Header: x-api-key: YOUR_KEY
Pricing Plans
Plan RequestsDay Price Free: 100- $0/month
Starter: 1,000- $5/month
Pro: 10,000- $15/month
Business Unlimited: $49/month
How to Get Started
- Visit daveedecoder.org and create a free account
- Go to Settings → Profile and enable Developer Mode
- The DecoderFX API menu will appear in your dashboard
- Choose a plan — the Free tier requires no credit card
- Copy your API key and start building
Code Examples
JavaScript
const res = await fetch(
"https://api.daveedecoder.org/convert?from=USD&to=NGN&amount=100",
{ headers: { "x-api-key": "YOUR_KEY" } }
);
const data = await res.json();
console.log(data.result); // 135870.43
PHP
$ch = curl_init("https://api.daveedecoder.org/convert?from=USD&to=NGN&amount=100");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-api-key: YOUR_KEY"]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$data = json_decode(curl_exec($ch), true);
echo $data["result"]; // 135870.43
Python
import requests
r = requests.get(
"https://api.daveedecoder.org/convert",
params={"from": "USD", "to": "NGN", "amount": 100},
headers={"x-api-key": "YOUR_KEY"}
)
print(r.json()["result"]) # 135870.43
Conclusion
DecoderFX is the currency API African developers have been waiting for. Whether you are building a fintech app, an e-commerce platform, a payment gateway, or a personal finance tool — DecoderFX gives you accurate, real-time exchange rates for all the currencies your users care about.
The free tier lets you start building immediately with no commitment. When you are ready to scale, affordable paid plans are available starting at just $5/month.
Ready to get started? Sign up at daveedecoder.org — it takes less than 2 minutes.