Central Bank of The Gambia Exchange Rate API
Official Central Bank of The Gambia (Gambia) daily exchange rates. All dozens of currencies published. Free JSON API for tax, audits, and compliant invoicing.
About Central Bank of The Gambia
The Central Bank of The Gambia publishes a daily indicative rate for around 32 currencies in dalasi per unit, together with an official valuation table for customs. The dalasi floats, so the daily figure is the reference that Gambian banks, the revenue authority and remittance operators cite.
- Official website: www.cbg.gm
- Official rate publication: Indicative exchange rates
Quick start
One request for the pair you need — USD to GMD at the official Central Bank of The Gambia rate:
curl "https://allratestoday.com/api/v1/central-bank/cbg/latest?source=USD&target=GMD" \
-H "Authorization: Bearer art_live_your_key" Or the bank's full published table:
curl "https://allratestoday.com/api/v1/central-bank/cbg/latest" \
-H "Authorization: Bearer art_live_your_key" On paid plans, any historical date or a time series:
curl "https://allratestoday.com/api/v1/central-bank/cbg/history?source=USD&target=GMD&from=2025-01-01" \
-H "Authorization: Bearer art_live_your_key" Node.js / TypeScript client
A dedicated zero-dependency npm package wraps these endpoints — central-bank-of-the-gambia-exchange-rate:
npm install central-bank-of-the-gambia-exchange-rate import { getRate } from 'central-bank-of-the-gambia-exchange-rate';
const pair = await getRate('USD', 'GMD', { apiKey: 'art_live_...' });
console.log(pair.rate, pair.rate_date); Zero dependencies, TypeScript types included, and it runs anywhere fetch exists — Node 18+, Bun, Deno, and edge runtimes.
Full reference — installation, all four functions, response shapes, error codes: central-bank-of-the-gambia-exchange-rate documentation.
Why use the official Central Bank of The Gambia rate?
When an auditor or tax office in Gambia asks which rate you used, "the GMD mid-market rate at 14:32" is not an answer — the official rate published by Central Bank of The Gambia for that date is. This API returns exactly those published figures, stamped with the bank's own rate_date; on weekends and holidays the most recent published table is returned, as compliance rules expect.
Pairs the bank doesn't print directly are resolved from its table (inverse or cross via GMD) and explicitly flagged "derived": true — so what the bank printed and what was computed are never confused.
Endpoints
GET /api/v1/central-bank/cbg/latest— latest table or single pair (all plans)GET /api/v1/central-bank/cbg/{YYYY-MM-DD}— the table for any date (paid plans)GET /api/v1/central-bank/cbg/history— time series, up to 5,000 rows (paid plans)GET /api/v1/central-bank/cbg/availability— publication calendar: the dates the bank actually published (all plans)
Full parameter reference in the API documentation. Every request counts toward your plan's monthly quota — rates change once per business day, so caching a published table locally makes a small quota go far.
Frequently asked questions
Is there an API for Central Bank of The Gambia exchange rates?
Yes — this one. Official daily GMD rates as clean JSON, latest table on every plan including free.
How often does Central Bank of The Gambia update its rates?
New tables land once per business day — the API picks each one up shortly after Central Bank of The Gambia publishes it.
Is this the official published table?
Yes — the rows are Central Bank of The Gambia's published figures, untouched, with the original publication date attached. Pairs the bank didn't print are computed and flagged derived.
Central Bank of The Gambia rates, one API key
Latest table on every plan. No credit card to start.
Get Free API Key Read the Docs