get_data

Pack: abs-au · Endpoint: https://gateway.pipeworx.io/abs-au/mcp

Fetch observations from an ABS dataflow. dataKey is a dot-separated SDMX filter with one position per dimension (order from dataflow_structure); each position is a code, ”+“-joined codes, or empty for wildcard. Pass “all” to fetch everything (can be large). Returns decoded series with their dimension labels and time-indexed values. Fetch dataflow_structure first to learn the dimension order and valid codes.

Parameters

NameTypeRequiredDescription
dataflowIdstringyesDataflow id, e.g. “CPI”.
dataKeystringyesDot-separated dimension filter, e.g. “1.10001.10.50.Q” or “all”. Empty positions are wildcards.
startPeriodstringnoEarliest period, e.g. “2020” or “2020-Q1” or “2020-01”.
endPeriodstringnoLatest period, e.g. “2024”.
maxSeriesnumbernoCap decoded series returned (default 100). The raw response may contain thousands.

Example call

Arguments

{
  "dataflowId": "CPI",
  "dataKey": "1.10001.10.50.Q",
  "startPeriod": "2020-Q1",
  "endPeriod": "2024-Q4"
}

curl

curl -X POST https://gateway.pipeworx.io/abs-au/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_data","arguments":{"dataflowId":"CPI","dataKey":"1.10001.10.50.Q","startPeriod":"2020-Q1","endPeriod":"2024-Q4"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('get_data', {
  "dataflowId": "CPI",
  "dataKey": "1.10001.10.50.Q",
  "startPeriod": "2020-Q1",
  "endPeriod": "2024-Q4"
});

More examples

{
  "dataflowId": "LF",
  "dataKey": "M3.3.1599.20.AUS.M",
  "startPeriod": "2025-01",
  "endPeriod": "2025-06",
  "maxSeries": 50
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "abs-au": {
      "url": "https://gateway.pipeworx.io/abs-au/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 28, 2026