get_observations
Retrieve time-series observations for a FRED series, including date and value pairs. Narrow the date range or use frequency aggregation to limit the number of points returned.
Instructions
Get the observations (actual time-series values) for a FRED series.
Returns a compact list of {date, value} points plus metadata. To stay within the
client's result-size limit, the point count is capped; if a series has more points
than the cap over your window, narrow the date range or aggregate via frequency.
A value of "." means the observation is missing for that date.
Args: series_id: The FRED series ID, e.g. "UNRATE". start_date: Inclusive start "YYYY-MM-DD". Omit for the series start. end_date: Inclusive end "YYYY-MM-DD". Omit for the latest. units: Optional transform: "lin" (levels), "chg", "ch1", "pch", "pc1" (year-over-year %), "pca", "cch", "cca", "log". frequency: Optional down-aggregation: "d","w","bw","m","q","sa","a". Omit to use the series' native frequency. sort_order: "asc" (oldest first) or "desc" (newest first). limit: Max points to return (capped at the server maximum).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| units | No | ||
| end_date | No | ||
| frequency | No | ||
| series_id | Yes | ||
| sort_order | No | asc | |
| start_date | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||