get_series

Pack: bundesbank-de · Endpoint: https://gateway.pipeworx.io/bundesbank-de/mcp

Pull observations for a Bundesbank series as SDMX-JSON.

Parameters

NameTypeRequiredDescription
flowRefstringyesDataflow id, e.g. “BBEX3”.
keystringyesDot-separated SDMX dimension filter, e.g. “D.USD.EUR.BB.AC.000”. Empty segments wildcard a dimension.
lastNObservationsnumbernoReturn only the most recent N observations.
startPeriodstringnoInclusive start period (YYYY, YYYY-MM, or YYYY-MM-DD).
endPeriodstringnoInclusive end period (YYYY, YYYY-MM, or YYYY-MM-DD).
detailstringnoSDMX detail level: “full” (default), “dataonly”, “serieskeysonly”, or “nodata”.

Example call

Arguments

{
  "flowRef": "BBEX3",
  "key": "D.USD.EUR.BB.AC.000",
  "lastNObservations": 10
}

curl

curl -X POST https://gateway.pipeworx.io/bundesbank-de/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_series","arguments":{"flowRef":"BBEX3","key":"D.USD.EUR.BB.AC.000","lastNObservations":10}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_series', {
  "flowRef": "BBEX3",
  "key": "D.USD.EUR.BB.AC.000",
  "lastNObservations": 10
});

More examples

{
  "flowRef": "BBSIS",
  "key": "M..EUR.DE.A.R....",
  "startPeriod": "2020-01-01",
  "endPeriod": "2023-12-31"
}

Connect

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

{
  "mcpServers": {
    "bundesbank-de": {
      "url": "https://gateway.pipeworx.io/bundesbank-de/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 28, 2026