NewConnect Claude, Gemini, ChatGPT, and other AI agents to API Ninjas via our MCP server

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:

(4.4)

From 3,856 users

1,000+

Applications using this API

API Status

Online - All Systems Operational

API Response Times

Average
P50
P75
P90
P95
328ms370ms381ms718ms999ms

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

  • rate  required

    Name of the interest rate to retrieve. The following rates are supported:

    Central Bank Rates
    Benchmark Rates

Headers

  • X-Api-Key  required

    API Key associated with your account.

Response

A JSON object with the following fields or an error if the request is unsuccessful.

  • rate_name

    The name of the interest rate.

  • rate_pct

    The interest rate value as a percentage.

  • last_updated

    Date when the rate was last updated (MM-DD-YYYY format).

Sample Request Live Demo!

rate

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_us

Headers

X-Api-KeyLog in or sign up to get your API Key

Sample Response

JSON
{
    rate_name:"United States Federal Reserve",
    rate_pct:4.5,
    last_updated:"12-18-2024"
}

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

  • rate  required

    The specific interest rate identifier. Supports both central bank rates and benchmark rates.

    Central Bank Rates
    Benchmark Rates
  • start_time  optional

    Start time for the data range, specified as a UNIX timestamp in seconds.

  • end_time  optional

    End time for the data range, specified as a UNIX timestamp in seconds.

Headers

  • X-Api-Key  required

    API Key associated with your account.

Response

A JSON object with the following fields or an error if the request is unsuccessful.

  • name

    The name of the interest rate.

  • data

    Array of historical rate data objects, each containing timestamp (UNIX timestamp in seconds) and rate_pct (interest rate as a percentage).

Sample Request Live Demo!

rate
start_time
end_time

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_us

Headers

X-Api-KeyLog in or sign up to get your API Key

Sample Response

JSON
{
    name:"United States Federal Reserve",
    data:[
      {
        timestamp:647827200,
        rate_pct:8
      },
      {
        timestamp:657158400,
        rate_pct:7.75
      },
      {
        timestamp:658454400,
        rate_pct:7.5
      },
      {
        timestamp:660528000,
        rate_pct:7.25
      },
      {
        timestamp:661478400,
        rate_pct:7
      },
      {
        timestamp:663379200,
        rate_pct:6.75
      },
      {
        timestamp:665366400,
        rate_pct:6.25
      },
      {
        timestamp:668390400,
        rate_pct:6
      },
      "..."
    ]
}

Frequently Asked Questions

  • 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.
  • Sign up for a free account to instantly get your API key, then pass it in the X-Api-Key header on every request. The documentation above includes ready-to-run examples in cURL, Python, JavaScript, Node.js, and more.
  • 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.
  • 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.
  • 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 the rate parameter on the /v2/interestrate endpoint. For LIBOR-specific tooling see the LIBOR API, and explore the full API catalog for related finance data.
  • A request to /v2/interestrate returns a JSON object with rate_name (the name of the rate), rate_pct (the rate value as a percentage), and last_updated (the date the rate was last refreshed in MM-DD-YYYY format). See error codes for the response when a request is unsuccessful.
  • Use the /v2/interestratehistorical endpoint with the same rate parameter plus optional start_time and end_time UNIX timestamps (in seconds); it returns up to 100 data points per call as a data array of timestamp and rate_pct objects. Both endpoints are Premium only, so check our pricing page for access details.
  • 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.