Discover/rba.gov.au API
live

rba.gov.au APIrba.gov.au

Access RBA data via API: CPI inflation history since 1956, housing and business lending rates, AUD exchange rates, cash rate decisions, and weekly balance sheet.

Endpoints
8
Updated
3mo ago
Try it

No input parameters required.

api.parse.bot/scraper/1554b579-2afa-4c9b-84dc-9745a61bbdc8/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/1554b579-2afa-4c9b-84dc-9745a61bbdc8/get_current_inflation' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 8 totalclick to expand

Get the latest CPI (Consumer Price Index) inflation data with quarterly and monthly year-ended percentage change rates. Returns the most recent period plus recent history.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "source": "string, data provider name",
    "recent_data": "array of recent CPI records with date, cpi_ye_quarterly, cpi_ye_monthly",
    "latest_period": "string, date of the latest data point (DD/MM/YYYY)",
    "cpi_ye_monthly": "string, year-ended monthly CPI percentage change",
    "previous_period": "string, date of the previous data point",
    "cpi_ye_quarterly": "string, year-ended quarterly CPI percentage change",
    "previous_cpi_ye_quarterly": "string, previous quarter's year-ended CPI change"
  },
  "sample": {
    "data": {
      "source": "Reserve Bank of Australia",
      "recent_data": [
        {
          "date": "31/10/2025",
          "cpi_ye_monthly": "3.8",
          "cpi_ye_quarterly": ""
        },
        {
          "date": "30/11/2025",
          "cpi_ye_monthly": "3.4",
          "cpi_ye_quarterly": ""
        }
      ],
      "latest_period": "31/03/2026",
      "cpi_ye_monthly": "4.6",
      "previous_period": "28/02/2026",
      "cpi_ye_quarterly": "4.1",
      "previous_cpi_ye_quarterly": ""
    },
    "status": "success"
  }
}

About the rba.gov.au API

This API exposes 8 endpoints covering Reserve Bank of Australia economic data, from current and historical CPI inflation to the RBA balance sheet. The get_current_inflation endpoint returns year-ended quarterly and monthly CPI percentage changes alongside recent history, while get_economic_indicators_summary consolidates inflation, interest rates, and exchange rates into a single response. Data spans lending rates, daily AUD exchange rates, and monetary policy decisions back to 2003.

Inflation and CPI Data

The get_current_inflation endpoint returns the latest CPI figures including cpi_ye_quarterly and cpi_ye_monthly percentage changes, the latest_period date, and a recent_data array for short-term trend inspection. For full historical analysis, get_historical_inflation provides a continuous time series from 1956 to the present. It accepts a limit integer parameter to cap the number of records returned and includes a metadata object with series-level descriptors such as title, description, and frequency, plus a total_periods count for the full dataset.

Interest Rates and Lending

get_interest_rates returns the last 12 months of housing lending rates — owner-occupied and investment — from large institutions, with values keyed by RBA series IDs such as FLRHOOTL, FLRHOOTA, and FLRHOOVL. A separate get_business_lending_rates endpoint covers outstanding finance rates for small (FLRBFOSBT), medium (FLRBFOSBR), and large (FLRBFOSBF) businesses over the same 12-month window. Both endpoints include table (the RBA table identifier), metadata, and a latest_date field.

Exchange Rates and Monetary Policy

get_exchange_rates returns 30 trading days of daily AUD rates against USD, EUR, JPY, CNY, and the Trade-Weighted Index, with latest_rates keyed by series IDs including FXRUSD, FXREUR, FXRJY, FXRCR, and FXRTWI. The get_monetary_policy_rates endpoint surfaces the last 60 cash rate decisions from 2003 onward, with fields for the change in cash rate (ARBAMPCCCR), the new cash rate target (ARBAMPCNCRT), and related series.

Balance Sheet and Summary

get_rba_balance_sheet provides 12 weeks of weekly RBA balance sheet data. Asset and liability values are returned in AUD millions under latest_data, keyed by series ID. The get_economic_indicators_summary endpoint combines the freshest values from inflation, interest rate, and exchange rate sources into one response, tagged with a retrieved_at ISO 8601 timestamp so callers can detect data age without querying individual endpoints.

Common use cases
  • Track quarterly and monthly CPI trend shifts using cpi_ye_quarterly and cpi_ye_monthly fields from get_current_inflation.
  • Build long-term inflation charts from the 1956-to-present time series returned by get_historical_inflation with a custom limit.
  • Monitor owner-occupied vs. investment lending rate spreads using the FLRHOOTL and FLRHOOVL series from get_interest_rates.
  • Compare small, medium, and large business borrowing costs using the three series IDs in get_business_lending_rates.
  • Display live AUD/USD and TWI rates in a currency dashboard using FXRUSD and FXRTWI from get_exchange_rates.
  • Audit the timing and magnitude of RBA cash rate changes using date and ARBAMPCNCRT fields from get_monetary_policy_rates.
  • Build a macroeconomic dashboard widget that polls get_economic_indicators_summary for a single-call snapshot of key Australian indicators.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does the Reserve Bank of Australia publish an official developer API?+
The RBA does not offer a public REST API. It publishes economic data as downloadable CSV files and HTML tables at rba.gov.au/statistics. This API structures that data into consistent JSON endpoints.
What does `get_historical_inflation` return, and can I limit the number of records?+
It returns an array of CPI records with date, cpi_ye_quarterly, and cpi_ye_monthly fields, covering data from 1956 to the present. The optional limit integer parameter caps how many records are returned. The response also includes a total_periods integer showing the full dataset size and a metadata object with series descriptors.
How current is the exchange rate data?+
The get_exchange_rates endpoint returns the last 30 trading days of daily AUD rates. The latest_date field in the response shows the date of the most recent data point, and the RBA typically updates exchange rate data on business days. The data does not include intraday rates.
Does the API cover RBA Governor speeches, meeting minutes, or forward guidance text?+
Not currently. The API covers quantitative series: CPI inflation, lending rates, exchange rates, cash rate decisions, and balance sheet figures. You can fork the API on Parse and revise it to add an endpoint that pulls RBA statement or speech content.
Can I retrieve full balance sheet history rather than just the last 12 weeks?+
The current get_rba_balance_sheet endpoint returns the most recent 12 weeks of weekly data. Longer historical balance sheet series are not exposed by the existing endpoints. You can fork the API on Parse and revise it to extend the lookback window or add a dedicated historical balance sheet endpoint.
Page content last updated . Spec covers 8 endpoints from rba.gov.au.
Related APIs in FinanceSee all →
cmegroup.com API
Get CME Group market data including FedWatch interest-rate probabilities, futures quotes and settlements, volume/open interest history, and options expirations and near-the-money option chains.
guba.eastmoney.com API
Access Chinese stock discussion posts and comments from Eastmoney's community platform to monitor investor sentiment, search board discussions, and retrieve detailed post information and stock board metadata. Get real-time insights into what traders are discussing about specific stocks through posts, replies, and board analytics.
blur.io API
Access NFT collection data on Blur.io, including floor prices, best bids, listed tokens, and recent activity. Authenticate with an Ethereum wallet to place collection bids and retrieve portfolio holdings.
immobiliare.it API
Search Italian property listings for sale or rent, browse real estate agencies, and explore price trends across Italian cities — all via immobiliare.it.
etoro.com API
Monitor top eToro traders by accessing their profiles, portfolio holdings, performance statistics, and trading history to inform your investment decisions. Discover trending stocks and cryptocurrencies, search for specific instruments, and view detailed market data and news to stay updated on investment opportunities.
blackrock.com API
Access comprehensive BlackRock iShares ETF data to research fund performance, holdings, fees, and sector allocations, plus search and compare specific ETFs. Monitor investment details like distributions, key characteristics, and broad market indices all in one place.
morningstar.com.au API
Access comprehensive financial data for Australian stocks, ETFs, and managed funds including key metrics, valuations, dividends, and historical prices. Search securities, review company profiles and ownership details, and stay informed with market news and upcoming dividend information.
eprocurement.gov API
Monitor India's public procurement opportunities by accessing active tenders, bids closing today, global tenders, high-value contracts, and cancelled tenders from the Central Public Procurement Portal. Search tender details, browse participating organizations, and track real-time procurement statistics to stay informed on government contracting opportunities.