Bureau of Economic Analysis Bureau Of Economic Analysis (BEA) API API

The Bureau Of Economic Analysis (BEA) API API from Bureau of Economic Analysis — 1 operation(s) for bureau of economic analysis (bea) api.

Operations 1

GET / Bureau of Economic Analysis Retrieve data from BEA API

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/bureau-of-economic-analysis-bureau-of-economic-analysis-bea-api-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

bureau-of-economic-analysis-bureau-of-economic-analysis-bea-api-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Bureau Of Economic Analysis (BEA) API
  version: 1.0.0
  description: The data API provides programmatic access to BEA published economic statistics using industry-standard methods and procedures. BEA's data API includes methods for retrieving a subset of our statistical data and the meta-data that describes it. The data API and its documentation are for programmers who are familiar with the concepts and techniques of retrieving data from Web Services.
servers:
- url: https://apps.bea.gov/api/data
tags:
- name: Bureau Of Economic Analysis (BEA) API
paths:
  /:
    get:
      summary: Bureau of Economic Analysis Retrieve data from BEA API
      parameters:
      - name: UserID
        in: query
        required: true
        schema:
          type: string
          description: Unique 36-character User ID for API access
      - name: method
        in: query
        required: true
        schema:
          type: string
          enum:
          - GetDatasetList
          - GetParameterList
          - GetParameterValues
          - GetData
      - name: DatasetName
        in: query
        required: false
        schema:
          type: string
          description: Name of the dataset to retrieve
      - name: ParameterName
        in: query
        required: false
        schema:
          type: string
          description: Specific parameter for the dataset
      - name: ResultFormat
        in: query
        required: false
        schema:
          type: string
          enum:
          - JSON
          - XML
          default: JSON
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
            application/xml:
              schema:
                type: string
        '400':
          description: Invalid request parameters
          content:
            application/json:
              schema:
                type: object
                properties:
                  APIErrorCode:
                    type: integer
                  APIErrorDescription:
                    type: string
        '429':
          description: Rate limit exceeded
          headers:
            Retry-After:
              description: Time in seconds to wait before retrying
              schema:
                type: integer
      tags:
      - Bureau Of Economic Analysis (BEA) API