Track global benchmark rates for treasury and risk management.
Treasury teams need to monitor multiple benchmark rates across regions to manage interest rate exposure and funding costs.
Fetch all major benchmark rates in parallel to build comprehensive rate dashboards showing current values and daily changes.
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);