Skip to main content
POST
/
api
/
economic
/
v1
/
get-fred-series-batch
GetFredSeriesBatch
curl --request POST \
  --url https://api.example.com/api/economic/v1/get-fred-series-batch \
  --header 'Content-Type: application/json' \
  --data '
{
  "seriesIds": [
    "<string>"
  ],
  "limit": 123
}
'
{
  "results": {},
  "fetched": 123,
  "requested": 123
}

Body

application/json

GetFredSeriesBatchRequest looks up multiple FRED series in a single call.

seriesIds
string[]
Required array length: 1 - 10 elements

FRED series IDs (e.g., "WALCL", "FEDFUNDS"). Max 10.

limit
integer<int32>

Maximum number of observations per series. Defaults to 120.

Response

Successful response

GetFredSeriesBatchResponse contains the requested FRED series data.

results
object

Map of series_id -> FRED series for found series.

fetched
integer<int32>

Number of series successfully fetched.

requested
integer<int32>

Number of series requested.