search_series
Search FRED for economic data series by text query, returning matches with pagination metadata (total count, offset, limit).
Instructions
Search FRED for series matching text. Returns the matching series along with pagination metadata (total match count, offset, limit).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sort | No | Sort direction. | |
| text | Yes | Words to search for, e.g. "unemployment rate". Must be non-empty. | |
| limit | No | Maximum number of results to return. | |
| order_by | No | Field to order results by (default: search relevance). |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| count | Yes | Total number of matches across all pages. | |
| limit | Yes | Page-size limit that FRED applied. | |
| offset | Yes | Offset of this page into the full result set. | |
| series | Yes | The matching series on this page. FRED names the array `seriess` (sic) on the wire; we read that but emit the correctly-spelled `series` on output. |