US House of Representatives Committees API

Congressional committees

Operations 4

GET /committee/{congress}/{chamber} List Committees #
GET /committee/{chamber}/{systemCode} Get Committee Details #
GET /committee/{chamber}/{systemCode}/bills Get Committee Bills #
GET /committee/{chamber}/{systemCode}/reports Get Committee Reports #

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-house-of-representatives-committees-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

us-house-of-representatives-committees-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Congress.gov Bills Committees API
  description: The Congress.gov API provides programmatic access to congressional data from the Library of Congress. It is a REST API offering machine-readable data covering bills, amendments, congressional records, committees, members, nominations, treaties, and other collections. An API key is required for access. Version 3 is the current stable release.
  version: v3
  contact:
    url: https://www.loc.gov/apis/additional-apis/congress-dot-gov-api/
  license:
    name: US Government Work
    url: https://www.usa.gov/government-works
servers:
- url: https://api.congress.gov/v3
  description: Congress.gov API v3 Production Server
security:
- ApiKeyQuery: []
tags:
- name: Committees
  description: Congressional committees
paths:
  /committee/{congress}/{chamber}:
    get:
      operationId: listCommittees
      summary: List Committees
      description: Returns a list of congressional committees for a specific Congress and chamber.
      tags:
      - Committees
      parameters:
      - $ref: '#/components/parameters/congressParam'
      - name: chamber
        in: path
        description: Chamber (House, Senate, or Joint)
        required: true
        schema:
          type: string
          enum:
          - house
          - senate
          - joint
      - $ref: '#/components/parameters/apiKeyParam'
      - $ref: '#/components/parameters/formatParam'
      - $ref: '#/components/parameters/limitParam'
      - $ref: '#/components/parameters/offsetParam'
      responses:
        '200':
          description: List of committees
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CommitteeListResponse'
  /committee/{chamber}/{systemCode}:
    get:
      operationId: getCommittee
      summary: Get Committee Details
      description: Returns details for a specific committee by system code.
      tags:
      - Committees
      parameters:
      - name: chamber
        in: path
        description: Chamber (house or senate)
        required: true
        schema:
          type: string
      - name: systemCode
        in: path
        description: Unique committee system code
        required: true
        schema:
          type: string
      - $ref: '#/components/parameters/apiKeyParam'
      - $ref: '#/components/parameters/formatParam'
      responses:
        '200':
          description: Detailed committee information
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CommitteeDetailResponse'
        '404':
          description: Committee not found
  /committee/{chamber}/{systemCode}/bills:
    get:
      operationId: getCommitteeBills
      summary: Get Committee Bills
      description: Returns bills referred to a specific committee.
      tags:
      - Committees
      parameters:
      - name: chamber
        in: path
        required: true
        schema:
          type: string
      - name: systemCode
        in: path
        required: true
        schema:
          type: string
      - $ref: '#/components/parameters/apiKeyParam'
      - $ref: '#/components/parameters/formatParam'
      - $ref: '#/components/parameters/limitParam'
      - $ref: '#/components/parameters/offsetParam'
      responses:
        '200':
          description: Bills referred to the committee
          content:
            application/json:
              schema:
                type: object
  /committee/{chamber}/{systemCode}/reports:
    get:
      operationId: getCommitteeReports
      summary: Get Committee Reports
      description: Returns reports issued by a specific committee.
      tags:
      - Committees
      parameters:
      - name: chamber
        in: path
        required: true
        schema:
          type: string
      - name: systemCode
        in: path
        required: true
        schema:
          type: string
      - $ref: '#/components/parameters/apiKeyParam'
      - $ref: '#/components/parameters/formatParam'
      - $ref: '#/components/parameters/limitParam'
      - $ref: '#/components/parameters/offsetParam'
      responses:
        '200':
          description: Reports from the committee
          content:
            application/json:
              schema:
                type: object
components:
  parameters:
    offsetParam:
      name: offset
      in: query
      description: Starting record number for pagination
      required: false
      schema:
        type: integer
        minimum: 0
        default: 0
    congressParam:
      name: congress
      in: path
      description: The Congress number (e.g., 118 for the 118th Congress)
      required: true
      schema:
        type: integer
        minimum: 1
    apiKeyParam:
      name: api_key
      in: query
      description: API key for authentication
      required: false
      schema:
        type: string
    limitParam:
      name: limit
      in: query
      description: Number of results to return per request (max 250)
      required: false
      schema:
        type: integer
        minimum: 1
        maximum: 250
        default: 20
    formatParam:
      name: format
      in: query
      description: Response format
      required: false
      schema:
        type: string
        enum:
        - json
        - xml
        default: json
  schemas:
    CommitteeSummary:
      type: object
      properties:
        systemCode:
          type: string
          description: Unique committee system code
        name:
          type: string
          description: Committee name
        chamber:
          type: string
          description: Chamber (House, Senate, or Joint)
        committeeTypeCode:
          type: string
          description: Type of committee
        url:
          type: string
    CommitteeListResponse:
      type: object
      properties:
        committees:
          type: array
          items:
            $ref: '#/components/schemas/CommitteeSummary'
        pagination:
          $ref: '#/components/schemas/Pagination'
    Pagination:
      type: object
      properties:
        count:
          type: integer
          description: Total number of records matching the query
        next:
          type: string
          description: URL for the next page of results
        prev:
          type: string
          description: URL for the previous page of results
    CommitteeDetailResponse:
      type: object
      properties:
        committee:
          type: object
          properties:
            systemCode:
              type: string
            name:
              type: string
            chamber:
              type: string
            committeeTypeCode:
              type: string
            subcommittees:
              type: array
              items:
                type: object
            reportsCount:
              type: integer
            billsCount:
              type: integer
  securitySchemes:
    ApiKeyQuery:
      type: apiKey
      in: query
      name: api_key
      description: API key required for all requests. Register at https://api.congress.gov/sign-up to obtain a key.