Skip to content

Tools

All tools are read-only and use openWorldHint because they retrieve external, evolving ABS and RBA data.

ToolPurposeKey inputs
search_datasetsSearch the curated ABS and RBA catalogue with deterministic ranking.query, source
list_catalogueList catalogue entries unranked, optionally filtered by source, category, or tag.source, category, tag, include_ceased, include_discontinued
list_economic_conceptsList semantic concepts accepted by get_economic_series.query, source, category
get_abs_dataset_structureRetrieve ABS SDMX dimensions and code lists.dataflow_id
get_abs_dataRetrieve ABS data in a normalised response shape.dataflow_id, key, start_period, end_period, last_n, updated_after
list_rba_tablesDeprecated compatibility alias for curated RBA tables.category, include_discontinued
get_rba_tableRetrieve an RBA statistical table in a normalised response shape.table_id, series_ids, start_date, end_date, last_n
get_economic_seriesPreferred analyst-facing retrieval for curated concepts.concept, variant, geography, frequency, start, end, last_n

For LLM-facing integrations, use:

list_economic_concepts(query="...")

then:

get_economic_series(concept="...")

This gives the model a constrained discovery surface before retrieval.

For exact ABS/RBA control, use search_datasets or list_catalogue, inspect structures where needed, then call get_abs_data or get_rba_table.