Skip to content

Examples

Search for datasets related to the cash rate:

search_datasets(query="cash rate")

Discover semantic concepts related to inflation:

list_economic_concepts(query="inflation")

Browse active RBA inflation tables:

list_catalogue(source="rba", category="inflation")

Inspect the ABS CPI data structure:

get_abs_dataset_structure(dataflow_id="CPI")

Fetch a filtered ABS CPI response:

get_abs_data(
dataflow_id="CPI",
key="all",
start_period="2024-Q1",
end_period="2024-Q4",
last_n=4
)

Fetch the latest observations from RBA table g1:

get_rba_table(
table_id="g1",
last_n=8
)

Fetch an event-style policy table:

get_rba_table(
table_id="a2",
last_n=8
)

Resolve the cash rate target:

get_economic_series(
concept="cash_rate_target",
start="2020-01-01"
)

Resolve trimmed mean inflation:

get_economic_series(
concept="trimmed_mean_inflation",
start="2020-01-01"
)

Resolve quarterly real GDP growth:

get_economic_series(
concept="gdp_growth",
start="2020-01-01"
)