US Bureau of Labor Statistics Surveys API

Discover and list available BLS surveys

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/us-bureau-of-labor-statistics-surveys-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

us-bureau-of-labor-statistics-surveys-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: BLS Public Data Popular Series Surveys API
  description: 'The Bureau of Labor Statistics (BLS) Public Data API allows developers to retrieve published historical time series data from all BLS surveys. Version 2 requires a free API registration key and provides higher query limits: up to 500 daily queries, 50 series per request, and 20 years of data. The API covers Consumer Price Index (CPI), employment and unemployment statistics, wages, productivity, industry employment, and occupational statistics.'
  version: '2.0'
  contact:
    name: BLS Developer Support
    url: https://www.bls.gov/developers/home.htm
    email: data_staff@bls.gov
  termsOfService: https://www.bls.gov/developers/termsOfService.htm
  license:
    name: Public Domain
    url: https://www.bls.gov/developers/termsOfService.htm
servers:
- url: https://api.bls.gov/publicAPI/v2
  description: BLS Public Data API v2 (requires registration key)
- url: https://api.bls.gov/publicAPI/v1
  description: BLS Public Data API v1 (no registration required)
tags:
- name: Surveys
  description: Discover and list available BLS surveys
paths:
  /surveys:
    get:
      operationId: listSurveys
      summary: List All BLS Surveys
      description: Returns a list of all BLS surveys with their abbreviations, names, and metadata. Use this endpoint to discover available survey types and their associated series prefixes.
      tags:
      - Surveys
      parameters:
      - name: registrationkey
        in: query
        required: false
        description: Your registered BLS API key
        schema:
          type: string
      responses:
        '200':
          description: List of all available BLS surveys
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SurveysResponse'
              example:
                status: REQUEST_SUCCEEDED
                responseTime: 45
                message: []
                Results:
                  survey:
                  - survey_abbreviation: CU
                    survey_name: Consumer Price Index - All Urban Consumers
                  - survey_abbreviation: LN
                    survey_name: Current Population Survey
                  - survey_abbreviation: CE
                    survey_name: Current Employment Statistics
                  - survey_abbreviation: OE
                    survey_name: Occupational Employment and Wage Statistics
  /surveys/{surveyAbbreviation}:
    get:
      operationId: getSurveyDetails
      summary: Get Survey Details
      description: Returns metadata and information for a specific BLS survey identified by its abbreviation code.
      tags:
      - Surveys
      parameters:
      - name: surveyAbbreviation
        in: path
        required: true
        description: The BLS survey abbreviation code (e.g., CU, LN, CE)
        schema:
          type: string
        example: CU
      - name: registrationkey
        in: query
        required: false
        description: Your registered BLS API key
        schema:
          type: string
      responses:
        '200':
          description: Survey details response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SurveyDetailResponse'
        '404':
          description: Survey not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    SurveyDetail:
      type: object
      properties:
        survey_abbreviation:
          type: string
        survey_name:
          type: string
        popular_series:
          type: array
          items:
            type: object
            properties:
              seriesID:
                type: string
              series_title:
                type: string
    SurveysResponse:
      type: object
      properties:
        status:
          type: string
        responseTime:
          type: integer
        message:
          type: array
          items:
            type: string
        Results:
          type: object
          properties:
            survey:
              type: array
              items:
                $ref: '#/components/schemas/Survey'
    ErrorResponse:
      type: object
      properties:
        status:
          type: string
          enum:
          - REQUEST_FAILED_ERROR
          - REQUEST_NOT_PROCESSED
        responseTime:
          type: integer
        message:
          type: array
          items:
            type: string
          description: Error message details
        Results:
          type: object
          description: Empty results object
    Survey:
      type: object
      properties:
        survey_abbreviation:
          type: string
          description: Two-letter survey abbreviation code
          example: CU
        survey_name:
          type: string
          description: Full name of the BLS survey program
          example: Consumer Price Index - All Urban Consumers
    SurveyDetailResponse:
      type: object
      properties:
        status:
          type: string
        responseTime:
          type: integer
        message:
          type: array
          items:
            type: string
        Results:
          type: object
          properties:
            survey:
              type: array
              items:
                $ref: '#/components/schemas/SurveyDetail'
  securitySchemes:
    ApiKey:
      type: apiKey
      in: query
      name: registrationkey
      description: Free API registration key from https://data.bls.gov/registrationEngine/. Required for v2 API access with higher rate limits.
externalDocs:
  description: BLS Developers Home
  url: https://www.bls.gov/developers/home.htm