# 2s.io US Congressional Bill Summaries

> 2s.io US Congressional Bill Summaries is a paid API for AI agents from 2s.io, paid per call via x402, $0.0012/call, status unknown (last checked 2026-09-16).

Streams CRS-authored summaries for US Congressional bills filtered by congress number and bill type, returning bill metadata, summary text, version code, and action date.

## Facts

- Endpoint: GET https://2s.io/api/gov/bill-summaries
- Price: $0.0012/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/2s-io-6f9177c4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AM_EZ_RoA2fuZkDlJskze

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-6f9177c4
```

Example prompt: Pull the 50 most recently updated CRS bill summaries for House bills (type 'hr') in the 118th Congress, sorted by update date descending.

## When to prefer this

Use this endpoint when you need structured, CRS-authored bill summary text tied to specific legislative stages, especially for change-detection on tracked bills or building 'what did Congress just do' feeds. Prefer this over raw bill text endpoints when you want human-readable summaries rather than full bill text.

## Known failure modes

- Invalid bill type enum value returns 400 error
- Congress number out of range or not yet available returns empty result set
- fromDate/toDate in wrong format (not YYYY-MM-DD) returns 400
- Offset beyond available records returns empty array
- Rate limiting or payment failure returns 402

## How this service works

Stream the latest US Congressional bill summaries via Congress.gov. Each row is a CRS-authored summary attached to a specific version of a bill (Introduced, Reported to House, Engrossed in Senate, Public Law, etc.). Filter by congress + bill type. Returns the underlying bill metadata + summary text + version code + action date. Use this for change-detection on bills you care about, or to power agent-side "what did Congress just pass" feeds.

## Output

A paginated list of CRS-authored bill summary records, each containing the summary text, bill metadata (number, title, type), the version/stage code (e.g. Introduced, Reported to House, Public Law), and the action date when that summary version was created.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "sort": "updateDate+desc",
   "type": "hr",
   "limit": 10,
   "congress": 118
  }
 }
}
```

## 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": {
      "sort": {
       "enum": [
        "updateDate+desc",
        "updateDate+asc"
       ],
       "type": "string",
       "default": "updateDate+desc"
      },
      "type": {
       "enum": [
        "hr",
        "s",
        "hjres",
        "sjres",
        "hconres",
        "sconres",
        "hres",
        "sres"
       ],
       "type": "string"
      },
      "limit": {
       "type": "integer",
       "default": 25,
       "maximum": 250,
       "minimum": 1
      },
      "offset": {
       "type": "integer",
       "default": 0,
       "minimum": 0
      },
      "toDate": {
       "type": "string"
      },
      "congress": {
       "type": "integer"
      },
      "fromDate": {
       "type": "string",
       "description": "YYYY-MM-DD."
      }
     }
    }
   }
  }
 }
}
```

## More

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