Interest Rate API
The Interest Rate API provides current central bank interest rates for 22 countries, all major benchmark interest rates (such as LIBOR, EURIBOR, and SOFR), and prime rates.
Interest rates are refreshed every 4 hours to ensure up-to-date information.
Available endpoints:
- /v2/interestrate - Get a specific interest rate by name
- /v2/interestratehistorical - Get historical interest rate data
From 3,856 users
Applications using this API
API Status
API Response Times
Average | P50 | P75 | P90 | P95 |
|---|---|---|---|---|
| 328ms | 370ms | 381ms | 718ms | 999ms |
Similar APIs
Didn't find what you were looking for? Suggest an improvement
/v2/interestrate GETPremium only
https://api.api-ninjas.com/v2/interestrate
Get a specific interest rate by name. Returns the rate value, name, and last updated timestamp.
Parameters
raterequiredName of the interest rate to retrieve. The following rates are supported:
Central Bank Rates ▶Benchmark Rates ▶
Headers
X-Api-KeyrequiredAPI Key associated with your account.
Response
A JSON object with the following fields or an error if the request is unsuccessful.
rate_nameThe name of the interest rate.
rate_pctThe interest rate value as a percentage.
last_updatedDate when the rate was last updated (MM-DD-YYYY format).
Sample Request Live Demo!
Try our APIs in the API playground
Sign up for a free API key to get started — no credit card required.
https://api.api-ninjas.com/v2/interestrate?rate=central_bank_usHeaders
X-Api-KeyLog in or sign up to get your API KeySample Response
Code Examples
1
2
curl -X GET "https://api.api-ninjas.com/v2/interestrate?rate=central_bank_us" \
-H "X-Api-Key: YOUR_API_KEY"If your programming language is not listed in the Code Example above, you can still make API calls by using a HTTP request library written in your programming language and following the above documentation.
/v2/interestratehistorical GETPremium only
https://api.api-ninjas.com/v2/interestratehistorical
Returns historical interest rates for specific central banks or benchmark rates using a single rate parameter. You can specify a time range to retrieve data from. The maximum number of data points returned per API call is 100.
Parameters
raterequiredThe specific interest rate identifier. Supports both central bank rates and benchmark rates.
Central Bank Rates ▶Benchmark Rates ▶start_timeoptionalStart time for the data range, specified as a UNIX timestamp in seconds.
end_timeoptionalEnd time for the data range, specified as a UNIX timestamp in seconds.
Headers
X-Api-KeyrequiredAPI Key associated with your account.
Response
A JSON object with the following fields or an error if the request is unsuccessful.
nameThe name of the interest rate.
dataArray of historical rate data objects, each containing
timestamp(UNIX timestamp in seconds) andrate_pct(interest rate as a percentage).
Sample Request Live Demo!
Try our APIs in the API playground
Sign up for a free API key to get started — no credit card required.
https://api.api-ninjas.com/v2/interestratehistorical?rate=central_bank_usHeaders
X-Api-KeyLog in or sign up to get your API KeySample Response
Frequently Asked Questions
Can I use the Interest Rate API for commercial purposes?
Yes, but you must have a premium subscription. Commercial use of the Interest Rate API is not permitted on the free tier. See our pricing page to choose a plan that fits your needs.How do I get an API key and start using the Interest Rate API?
Sign up for a free account to instantly get your API key, then pass it in theX-Api-Keyheader on every request. The documentation above includes ready-to-run examples in cURL, Python, JavaScript, Node.js, and more.What happens if I exceed my quota for the month?
Your API requests will simply be denied once you hit your monthly quota — you will never be charged more than the plan you signed up for. To increase your quota, you can upgrade your plan any time on our pricing page.What happens if a request to the Interest Rate API fails?
The API responds with a standard HTTP status code and a JSON error message describing the problem. See our error codes reference for the full list of codes and how to resolve each one, or contact support if you need help.What rates can I retrieve with the Interest Rate API?
The API covers current central bank policy rates for 22 countries plus major benchmark and prime rates, including SOFR, EURIBOR, ESTER, SONIA, SARON, TONAR, CORRA, EFFR, and Livret A, all queried via therateparameter on the/v2/interestrateendpoint. For LIBOR-specific tooling see the LIBOR API, and explore the full API catalog for related finance data.What does the /v2/interestrate response include?
A request to/v2/interestratereturns a JSON object withrate_name(the name of the rate),rate_pct(the rate value as a percentage), andlast_updated(the date the rate was last refreshed in MM-DD-YYYY format). See error codes for the response when a request is unsuccessful.How do I get historical interest rate data?
Use the/v2/interestratehistoricalendpoint with the samerateparameter plus optionalstart_timeandend_timeUNIX timestamps (in seconds); it returns up to 100 data points per call as adataarray oftimestampandrate_pctobjects. Both endpoints are Premium only, so check our pricing page for access details.How fresh is the data and what can I build with it?
Rates are refreshed every 4 hours, making the API suitable for finance dashboards, mortgage and loan calculators, and macroeconomic monitoring tools. Pair it with the Mortgage Rate API, Inflation API, or Exchange Rate API for richer financial applications.