# 2s.io US Congressional Hearings Lookup

> 2s.io US Congressional Hearings Lookup 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).

Look up or list US Congressional hearings from Congress.gov, with full detail including title, dates, committee, and transcripts/recordings.

## Facts

- Endpoint: GET https://2s.io/api/gov/congress-hearing
- 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-e32c4700
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TKSNLtd2RgyuRejYtffMc

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-e32c4700
```

Example prompt: Pull up the full details for Senate hearing jacket number 117890 from the 118th Congress, and also list any other Senate hearings from January 2024 through March 2024.

## When to prefer this

Use this endpoint when you need authoritative, primary-source US Congressional hearing data including committee testimony, transcripts, and recordings — especially for policy research, legislative oversight analysis, or finding specific hearings by jacket number. Prefer over general web search when structured, filterable government data is needed.

## Known failure modes

- Invalid or nonexistent jacket number returns 404 or empty result
- Invalid congress number returns error
- Chamber value not one of 'house' or 'senate' causes validation failure
- Date range with invalid format (non-YYYY-MM-DD) causes parsing error
- Offset beyond available records returns empty list
- Payment failure (x402) if USDC not provided

## How this service works

Look up or list US Congressional hearings via Congress.gov. Pass congress + chamber + jacketNumber to fetch a single hearing with full detail (title, dates, committee, transcripts/recordings if available). Or filter list by congress + chamber, with optional date range. Hearings cover committee testimony from the executive branch, subject experts, and stakeholders — primary-source material for oversight + policy research.

## Output

Returns a single hearing record (when jacket number is provided) with full detail including title, dates, committee, and available transcripts or recordings; or a paginated list of hearings filtered by congress, chamber, and optional date range.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "limit": 10,
   "offset": 0,
   "toDate": "2024-03-31",
   "chamber": "senate",
   "fromDate": "2024-01-01"
  }
 }
}
```

## 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": {
      "limit": {
       "type": "integer",
       "default": 25,
       "maximum": 250,
       "minimum": 1
      },
      "offset": {
       "type": "integer",
       "default": 0,
       "minimum": 0
      },
      "toDate": {
       "type": "string"
      },
      "chamber": {
       "enum": [
        "house",
        "senate"
       ],
       "type": "string"
      },
      "congress": {
       "type": "integer"
      },
      "fromDate": {
       "type": "string",
       "description": "YYYY-MM-DD."
      },
      "jacketNumber": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/2s-io-e32c4700/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)
