Central Bank of Suriname Exchange Rate API: Official SRD Rates as JSON

Reviewed by Madhushan, Fintech Developer — August 2026

The Central Bank of Suriname publishes the official exchange rates that accounting, tax, and customs practice in Suriname reference — published official rates, not moving market prices. This guide shows how to pull them as JSON: via a REST endpoint or the zero-dependency central-bank-of-suriname-exchange-rate npm package.

USD → SRD — official Central Bank of Suriname weighted-average selling rate
Weekly observations, Aug '25 – Aug '26 · Surinamese dollars per 1 US dollar
383940Aug '25Nov '25Feb '26May '26Aug '2637.932025-08-22: 38.40 SRD2025-08-29: 38.86 SRD2025-09-05: 39.30 SRD2025-09-12: 39.76 SRD2025-09-19: 38.50 SRD2025-09-26: 38.60 SRD2025-10-03: 38.79 SRD2025-10-09: 39.21 SRD2025-10-17: 39.71 SRD2025-10-24: 40.02 SRD2025-10-31: 38.88 SRD2025-11-07: 38.80 SRD2025-11-14: 38.84 SRD2025-11-21: 38.79 SRD2025-11-28: 38.81 SRD2025-12-05: 38.94 SRD2025-12-12: 38.78 SRD2025-12-19: 38.56 SRD2025-12-24: 38.50 SRD2025-12-30: 38.45 SRD2026-01-09: 38.47 SRD2026-01-16: 38.47 SRD2026-01-23: 38.45 SRD2026-01-30: 38.22 SRD2026-02-06: 38.06 SRD2026-02-13: 38.00 SRD2026-02-20: 37.98 SRD2026-02-27: 37.88 SRD2026-03-06: 37.78 SRD2026-03-13: 37.69 SRD2026-03-19: 37.66 SRD2026-03-27: 37.65 SRD2026-04-02: 37.70 SRD2026-04-10: 37.77 SRD2026-04-17: 37.75 SRD2026-04-24: 37.68 SRD2026-04-30: 37.61 SRD2026-05-08: 37.55 SRD2026-05-15: 37.48 SRD2026-05-22: 37.43 SRD2026-05-29: 37.46 SRD2026-06-05: 37.56 SRD2026-06-12: 37.55 SRD2026-06-19: 37.58 SRD2026-06-26: 37.64 SRD2026-07-03: 37.73 SRD2026-07-10: 37.79 SRD2026-07-17: 37.86 SRD2026-07-24: 37.89 SRD2026-07-31: 37.90 SRD2026-08-07: 37.94 SRD2026-08-14: 37.97 SRD2026-08-20: 37.93 SRD
Source: Central Bank of Suriname published rates · chart data from the AllRatesToday API (/api/v1/central-bank/cbvs/history?source=USD&target=SRD).

Weighted averages under a float

Since June 2021 the Surinamese dollar floats, and the central bank publishes weighted-average exchange rates — buying and selling for 11 currencies, refreshed up to three times each business day. These are the operative official rates for pricing and settlement in Suriname; the old fixed table from before the float is history, not the current reference.

Why official rates, not market rates

A live mid-market feed answers "what is USD/SRD trading at right now?" — the right tool for checkouts and dashboards. But accountants, auditors, and tax authorities ask a different question: "which rate were you required to use for this date?" That answer comes from the Central Bank of Suriname’s published rates, and it never changes after publication.

Get the latest rates (REST)

curl "https://allratestoday.com/api/v1/central-bank/cbvs/latest" \
  -H "Authorization: Bearer YOUR_API_KEY"

The response is the bank's most recent published table — every rate and the publication date. The latest rates are available on every plan, including the free tier (300 requests/month, no credit card).

The npm SDK

npm install central-bank-of-suriname-exchange-rate
import { getRate, getLatestRates } from 'central-bank-of-suriname-exchange-rate';

// One pair at the official rate
const pair = await getRate('USD', 'SRD', { apiKey: 'art_live_...' });
console.log(pair.rate, pair.rate_date);

// The bank's full published table
const table = await getLatestRates({ apiKey: 'art_live_...' });
console.log(table.rate_date, table.rates.length);

Zero dependencies, TypeScript types included, and it runs anywhere fetch exists — Node 18+, Bun, Deno, and edge runtimes.

Historical rates for an invoice date

import { getRatesForDate, getHistory } from 'central-bank-of-suriname-exchange-rate';

const day = await getRatesForDate('2026-08-18', { apiKey: 'art_live_...' });

const series = await getHistory(
  { source: 'USD', target: 'SRD', from: '2026-01-01' },
  { apiKey: 'art_live_...' }
);

Historical dates and time series need a paid plan; the latest rates stay free.

Published vs derived pairs

If the Central Bank of Suriname does not print a pair directly, the API resolves it from the bank's published rates — an inverse, or a cross via SRD — and flags it derived: true with the method used. Official and computed values are never silently mixed, which is exactly the distinction an auditor will ask about.

The archive

The bank’s koerslijst archive is loaded from September 2009 — through the 2016 devaluation, the 2021 float (14 → 21 SRD per dollar in one step) and the slide since. Under the float there are up to three fixings a day; the archive keeps the day’s final fixing, and each new fixing is stored with its publication date as it appears.

FAQ

Does the Central Bank of Suriname have an official exchange rate API?

The bank publishes its official rates on its own site, and AllRatesToday serves the same published rates as clean JSON via REST or the central-bank-of-suriname-exchange-rate npm package. The latest table is free.

How do I get the official Suriname exchange rate for a past date?

The rates-for-date endpoint returns the official table for any archived date; non-publication days resolve to the most recent published date and are flagged, so audit trails stay honest. Historical dates require a paid plan; latest rates are free.

Which of the CBvS tables does the API serve?

The weighted-average (Gewogen Gemiddelde) table — the operative official rates under the float. Historical dates before the June-2021 float return the fixed official rates that applied then, from the bank’s own koerslijst archive; the stale copy of that fixed table still shown on the bank’s current homepage is deliberately not ingested.

Official Central Bank of Suriname rates, as JSON

The latest rates are free — 300 requests/month, no credit card.

Get your free API key

Related Articles