get_release_series
Retrieve series published in a FRED release with pagination, ordering, and filtering options.
Instructions
List the FRED series published in a release, with pagination metadata (total count, offset, limit). Supports ordering, sort direction, and a result limit.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sort | No | Sort direction. | |
| limit | No | Maximum number of series to return. | |
| order_by | No | Field to order results by. | |
| release_id | Yes | The FRED release id. |
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. |