Congress.gov API bound-congressional-record API

Returns bound Congressional Record data from the API

Operations 4

GET /bound-congressional-record Returns a list of bound congressional records issues sorted by most recent.
GET /bound-congressional-record/{year} Returns a list of bound congressional records issues sorted by most recent.
GET /bound-congressional-record/{year}/{month} Returns a list of bound congressional records issues sorted by most recent.
GET /bound-congressional-record/{year}/{month}/{day} Returns a list of bound congressional records issues sorted by most recent.

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/congress-gov-bound-congressional-record-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

congress-gov-bound-congressional-record-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: 'Congress.gov shares its application programming interface (API) with the public to ingest the Congressional data. <a href="sign-up/" target="_blank">Sign up for an API key</a> from api.data.gov that you can use to access web services provided by Congress.gov. To learn more, view our <a href="https://github.com/LibraryOfCongress/api.congress.gov/" target="_blank">GitHub repository</a>.

    '
  title: Congress.gov amendments Bound Congressional Record API
  version: '3'
servers:
- url: /v3
security:
- ApiKeyAuth: []
tags:
- name: bound-congressional-record
  description: Returns bound Congressional Record data from the API
paths:
  /bound-congressional-record:
    get:
      tags:
      - bound-congressional-record
      summary: Returns a list of bound congressional records issues sorted by most recent.
      description: Returns a list of bound congressional record issues sorted by most recent.
      parameters:
      - $ref: '#/components/parameters/format'
      - $ref: '#/components/parameters/offset'
      - $ref: '#/components/parameters/limit'
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BoundCongressionalRecord'
            application/xml:
              schema:
                $ref: '#/components/schemas/BoundCongressionalRecord'
        '400':
          description: Invalid status value
  /bound-congressional-record/{year}:
    get:
      tags:
      - bound-congressional-record
      summary: Returns a list of bound congressional records issues sorted by most recent.
      description: Returns a list of bound congressional record issues sorted by most recent.
      parameters:
      - $ref: '#/components/parameters/format'
      - $ref: '#/components/parameters/offset'
      - $ref: '#/components/parameters/limit'
      - $ref: '#/components/parameters/year'
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BoundCongressionalRecord'
            application/xml:
              schema:
                $ref: '#/components/schemas/BoundCongressionalRecord'
        '400':
          description: Invalid status value
  /bound-congressional-record/{year}/{month}:
    get:
      tags:
      - bound-congressional-record
      summary: Returns a list of bound congressional records issues sorted by most recent.
      description: Returns a list of bound congressional record issues sorted by most recent.
      parameters:
      - $ref: '#/components/parameters/format'
      - $ref: '#/components/parameters/offset'
      - $ref: '#/components/parameters/limit'
      - $ref: '#/components/parameters/year'
      - $ref: '#/components/parameters/month'
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BoundCongressionalRecord'
            application/xml:
              schema:
                $ref: '#/components/schemas/BoundCongressionalRecord'
        '400':
          description: Invalid status value
  /bound-congressional-record/{year}/{month}/{day}:
    get:
      tags:
      - bound-congressional-record
      summary: Returns a list of bound congressional records issues sorted by most recent.
      description: Returns a list of bound congressional record issues sorted by most recent.
      parameters:
      - $ref: '#/components/parameters/format'
      - $ref: '#/components/parameters/offset'
      - $ref: '#/components/parameters/limit'
      - $ref: '#/components/parameters/year'
      - $ref: '#/components/parameters/month'
      - $ref: '#/components/parameters/day'
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BoundCongressionalRecord'
            application/xml:
              schema:
                $ref: '#/components/schemas/BoundCongressionalRecord'
        '400':
          description: Invalid status value
components:
  parameters:
    day:
      name: day
      in: path
      description: The specified day of the bound Congressional record, for example 18.
      required: false
      schema:
        type: integer
    limit:
      name: limit
      in: query
      description: The number of records returned. The maximum limit is 250.
      required: false
      schema:
        type: integer
    month:
      name: month
      in: path
      description: The specified month of the bound Congressional record, for example 4 for April.
      required: false
      schema:
        type: integer
    year:
      name: year
      in: path
      description: The specified year of the bound Congressional record, for example 1990.
      required: false
      schema:
        type: integer
    offset:
      name: offset
      in: query
      description: The starting record returned. 0 is the first record.
      required: false
      schema:
        type: integer
    format:
      name: format
      in: query
      description: The data format. Value can be xml or json.
      required: false
      schema:
        type: string
        default: xml
        enum:
        - xml
        - json
  schemas:
    boundCongressionalRecord:
      type: object
      properties:
        congress:
          type: integer
          example: 101
        date:
          type: string
          example: '1990-05-01'
        sessionNumber:
          type: integer
          example: 2
        updateDate:
          type: string
          format: date
          example: '2020-10-20'
        url:
          type: string
          format: url
          example: https://api.congress.gov/v3/bound-congressional-record/1990/5/1?format=json
        volumeNumber:
          type: integer
          example: 136
    BoundCongressionalRecord:
      type: object
      properties:
        boundCongressionalRecord:
          type: array
          items:
            $ref: '#/components/schemas/boundCongressionalRecord'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: query
      name: api_key