# Congressional Record Daily Issues Listing

> Congressional Record Daily Issues Listing is a paid API for AI agents from 2s.io, paid per call via x402, $0.0012/call, status unknown (last checked 2026-09-14).

Lists daily Congressional Record issues from Congress.gov, filterable by year, month, and day, returning volume, issue number, publish date, and section links for Senate, House, Daily Digest, and Extensions of Remarks.

## Facts

- Endpoint: GET https://2s.io/api/gov/congress-record
- Price: $0.0012/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/2s-io-5ff1c28f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_n3rX9grKHNSOe6qhBYUmw

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability 2s-io-5ff1c28f
```

Example prompt: Pull up the Congressional Record issues from Congress.gov for March 2023 — I want to see what volumes and issue numbers were published that month along with links to the Senate and House sections.

## When to prefer this

Use this endpoint when you need official, primary-source US Congressional floor proceedings, transcripts, or daily digests indexed by date. Prefer this over news summaries or secondary sources when you need authoritative records of what was said or voted on in the House or Senate. Ideal for legislative research, compliance checks, journalism, or historical lookups tied to specific Congressional session dates.

## Known failure modes

- No issues found for the specified date range (empty result set)
- Invalid date parameters (day > 31, month > 12, year out of 1873–2100 range) return validation errors
- Congress is not in session on the requested date so no record exists
- Offset out of bounds returns empty page
- Congress.gov upstream unavailable causing timeout or 5xx error

## How this service works

List daily Congressional Record issues via Congress.gov — the official transcripts and proceedings of the US House and Senate, daily. Filter by year + month + day to narrow to a specific date or month. Each issue carries volume, issue number, publish date, and links to per-section content (Daily Digest, Senate, House, Extensions of Remarks) with PDF + sub-section URLs. Primary source for what was said on the floor.

## Output

Returns a list of daily Congressional Record issues matching the date filters, each with volume number, issue number, publish date, and URLs to per-section content (Daily Digest, Senate, House, Extensions of Remarks) including PDF links and sub-section URLs.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "year": 2023,
   "month": 3
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "queryParams"
   ],
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "properties": {
      "day": {
       "type": "integer",
       "maximum": 31,
       "minimum": 1
      },
      "year": {
       "type": "integer",
       "maximum": 2100,
       "minimum": 1873
      },
      "month": {
       "type": "integer",
       "maximum": 12,
       "minimum": 1
      },
      "offset": {
       "type": "integer",
       "default": 0,
       "minimum": 0
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/2s-io-5ff1c28f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 2s.io](https://www.zero.xyz/host/2s.io/llms.txt)
