Retrieve current risk-free reference rates that replaced LIBOR. Access SOFR, SONIA, ESTR, TONA, and SARON with daily changes, previous values, and administrator information.
{
"status": "ok",
"error": null,
"data": {
"rate": "SOFR",
"name": "Secured Overnight Financing Rate",
"currency": "USD",
"region": "United States",
"administrator": "Federal Reserve Bank of New York",
"value": 4.32,
"date": "2026-02-04",
"lastUpdated": "2026-02-05T05:00:00.000Z",
"change1d": -0.01,
"changeDirection": "down",
"previousValue": 4.33,
"previousDate": "2026-02-03"
}
}






Retrieve current risk-free reference rates that replaced LIBOR. Access SOFR, SONIA, ESTR, TONA, and SARON with daily changes, previous values, and administrator information.
A single authenticated GET with the location you care about — no SDK required.
GET /v1/benchmarkrate?query=… x-api-key: your_key
Each request pulls from multiple upstream sources and computes the derived fields for you.
One structured object, typically under 200 ms — ready to render.
{ rate, name, currency, … }
Real applications shipping on this endpoint today — each with the numbers that made it worth wiring up.
See every use caseFetch current benchmark rates programmatically to calculate loan interest. Add your credit spread to the benchmark for total rate.
Fetch all major benchmark rates in parallel to build comprehensive rate dashboards showing current values and daily changes.
Copy a working request, or install a typed SDK. Same endpoint, same key.
const res = await fetch("https://api.apiverve.com/v1/benchmarkrate?rate=SOFR", {
headers: { "x-api-key": "YOUR_API_KEY" },
});
const { data } = await res.json();
console.log(data);Every related API ships with your key — no separate plans, no extra keys, one bill.
See pricingReady-made recipes for Zapier, Make, and n8n — trigger on an event, and the data lands where your team works.
The same key unlocks every other APIVerve endpoint — reach for them when you need them.
Browse the catalog