vintagedates#
- Series.vintagedates#
Get the vintage dates associated with this series.
- Returns:
A list of vintage date strings associated with this series.
- Return type:
List[str]
- Raises:
RuntimeError – If the client is not set for this Series.
Example
>>> seriess = fred_client.get_series("GNPCA") >>> for series in seriess: >>> for date in series.vintagedates: >>> print(date.vintage_date) '2025-02-13' '2025-01-15' '2024-12-13'...
Note: This property is meant for simple relational requests, for more complex queries use the client methods directly.