# fittings Congress Bill Status

> fittings Congress Bill Status is a paid API for AI agents from fittings.sh, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns status, sponsor, latest action, and titles for a specific US Congressional bill by congress number, chamber/type, and bill number.

## Facts

- Endpoint: GET https://fittings.sh/v1/gov/congress-bill
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fittings-congress-bill-status-df0d2618
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qfWNHfsVeBkU9tr_Lu42F

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 fittings-congress-bill-status-df0d2618
```

Example prompt: What's the current status, sponsor, and latest action for HR 1 in the 119th Congress?

## When to prefer this

Use this endpoint when you need structured, machine-readable legislative metadata for a known bill — specifically when you already have the congress number, bill type (hr, s, hjres, etc.), and bill number. Ideal for tracking bill progress, identifying sponsors, or retrieving official titles programmatically. Prefer this over scraping Congress.gov when you need low-latency, pay-per-call lookups without authentication setup.

## Known failure modes

- Invalid bill type enum value returns an error
- Bill number not found for the given congress returns 404 or empty result
- Congress number out of range or not yet available returns an error
- Missing required parameters (congress, type, number) returns a validation error

## How this service works

Status, sponsor, latest action and titles for a bill in a given Congress and chamber.

## Output

Returns structured data about the specified bill including its official and short titles, current status, the name of the sponsoring legislator, and the most recent legislative action taken (with date and description).

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "congress",
      "type",
      "number"
     ],
     "properties": {
      "type": {
       "type": "string",
       "description": "hr | s | hjres | sjres | hconres | sconres | hres | sres"
      },
      "number": {
       "type": "number"
      },
      "congress": {
       "type": "number",
       "description": "Congress number, e.g. 119"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fittings-congress-bill-status-df0d2618/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fittings.sh](https://www.zero.xyz/host/fittings.sh/llms.txt)
