Skip to main content
GET
/
macro
/
interest-rates
/
snapshot
Interest Rates (Real-Time)
curl --request GET \
  --url https://api.aisa.one/apis/v1/financial/macro/interest-rates/snapshot \
  --header 'Authorization: Bearer <token>'
{
  "interest_rates": [
    {
      "bank": "<string>",
      "name": "<string>",
      "rate": 123,
      "date": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

bank
string
required

The central bank code (e.g., FED, ECB, BOJ). Use the /macro/interest-rates/banks endpoint to get a list of available banks.

Response

Interest rates snapshot response

interest_rates
object[]