list_series
Browse available Bureau of Labor Statistics data series with category filtering to find economic indicators like CPI and employment statistics.
Instructions
List available BLS data series with optional category filtering. Returns series metadata including titles, IDs, and categories.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | Filter by category (e.g., 'CPI', 'Employment'). Optional. | |
limit | No | Maximum number of results to return (default: 50) |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Filter by category (e.g., 'CPI', 'Employment'). Optional.",
"title": "Category"
},
"limit": {
"default": 50,
"description": "Maximum number of results to return (default: 50)",
"title": "Limit",
"type": "integer"
}
},
"type": "object"
}