get_series_data
Fetch regional values for a FRED series across regions, optionally for a specific date or from a start date. Returns dated per-region observations with metadata.
Instructions
GeoFRED / Maps: fetch one regional series' values across regions, optionally over time. Give a regional series_id; with no date, FRED returns the most recent. Set date for a single date, or start_date for every date from then on. The result nests everything under a top-level meta object (FRED's own envelope, mirrored faithfully): the dated per-region values live under meta.data, which maps each observation date to a list of {region, code, value, series_id}; alongside them sit the display labels meta.title, meta.units, meta.region, meta.seasonality, and meta.frequency (see the output schema for the full shape).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | Report a single date, `YYYY-MM-DD` (default: the most recent). | |
| series_id | Yes | A regional FRED series id, e.g. `SMU56000000500000001`. | |
| start_date | No | Report every date from this one onward, `YYYY-MM-DD`. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| meta | Yes | The `meta` payload: the descriptive header plus the dated regional values. |