FRED · JSON Structure

Api Series List Structure

A list of FRED series.

Type: object Properties: 8 Required: 1
FinanceGovernmentEconomic DataFederal ReserveTime SeriesOpen DataPublic APIs

SeriesList is a JSON Structure definition published by FRED, describing 8 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

realtime_start realtime_end order_by sort_order count offset limit seriess

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/fred/refs/heads/main/json-structure/api-series-list-structure.json",
  "name": "SeriesList",
  "description": "A list of FRED series.",
  "type": "object",
  "properties": {
    "realtime_start": {
      "type": "date",
      "example": "2026-05-28"
    },
    "realtime_end": {
      "type": "date",
      "example": "2026-05-28"
    },
    "order_by": {
      "type": "string",
      "example": "example"
    },
    "sort_order": {
      "type": "string",
      "example": "example"
    },
    "count": {
      "type": "int32",
      "example": 1
    },
    "offset": {
      "type": "int32",
      "example": 0
    },
    "limit": {
      "type": "int32",
      "example": 1000
    },
    "seriess": {
      "type": "array",
      "description": "Array of series (FRED uses the legacy \"seriess\" key intentionally).",
      "items": {
        "$ref": "#/components/schemas/Series"
      }
    }
  },
  "required": [
    "seriess"
  ]
}