Skip to main content
GET
/
api
/
economic
/
v1
/
get-bls-series
GetBlsSeries
curl --request GET \
  --url https://api.example.com/api/economic/v1/get-bls-series
{
  "series": {
    "seriesId": "<string>",
    "title": "<string>",
    "units": "<string>",
    "observations": [
      {
        "year": "<string>",
        "period": "<string>",
        "periodName": "<string>",
        "value": "<string>"
      }
    ]
  }
}

Query Parameters

series_id
string

BLS series ID (e.g. "CES0500000001", "CIU1010000000000A").

limit
integer<int32>

Maximum number of observations to return. Defaults to 60.

Response

Successful response

GetBlsSeriesResponse contains the requested BLS series data.

series
object

BlsSeries is a BLS time series with metadata and observations.