get_series
Fetch Bureau of Labor Statistics time series data by ID with date range filtering. Retrieve economic indicators like CPI and employment statistics with values, periods, and metadata.
Instructions
Fetch BLS data series by ID with optional date range filtering. Returns time series data points with values, periods, and metadata.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_year | No | End year for data range (optional) | |
series_id | Yes | BLS series ID (e.g., 'CUUR0000SA0' for CPI All Items) | |
start_year | No | Start year for data range (optional) |
Input Schema (JSON Schema)
{
"properties": {
"end_year": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"description": "End year for data range (optional)",
"title": "End Year"
},
"series_id": {
"description": "BLS series ID (e.g., 'CUUR0000SA0' for CPI All Items)",
"title": "Series Id",
"type": "string"
},
"start_year": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"description": "Start year for data range (optional)",
"title": "Start Year"
}
},
"required": [
"series_id"
],
"type": "object"
}