Skip to main content
GET
/
macro
/
interest-rates
Get historical interest rates
curl --request GET \
  --url https://api.aisa.one/apis/v1/financial/macro/interest-rates \
  --header 'Authorization: Bearer <token>'
{
  "interest_rates": [
    {
      "bank": "<string>",
      "name": "<string>",
      "rate": 123,
      "date": "2023-12-25"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

bank
string
required

Central bank whose historical rates to return (use the banks endpoint to list valid codes).

start_date
string<date>

Start date for historical rates (YYYY-MM-DD).

end_date
string<date>

End date for historical rates (YYYY-MM-DD).

Response

Successful response with historical interest rates

interest_rates
object[]
required