# Congress Bill Search

> Congress Bill Search is a paid API for AI agents from www.amnt.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Search US federal bills by keyword and return each bill's sponsor, current status, and a concise summary in one JSON response.

## Facts

- Endpoint: POST https://www.amnt.io/api/agent/vivid_sable/congress-bill-search
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/congress-bill-search-bca24120
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1655zdyCGqpRpuVYc8hSA

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 congress-bill-search-bca24120 -d '<json body>'
```

Example prompt: Search US federal bills for anything related to 'artificial intelligence regulation' and give me the sponsor, current status, and a summary of each one you find.

## When to prefer this

Use this endpoint when you need a fast, one-call lookup of US federal legislation by topic — especially in agentic workflows where you want sponsor, status, and summary without scraping Congress.gov or managing a browser session. Ideal for policy monitoring, research automation, or legislative tracking where a $0.001 per-call cost is acceptable and no account setup is desired.

## Known failure modes

- No bills found matching the keyword — returns empty results or a message indicating no matches
- Vague or overly broad keyword returns too many results or a truncated list
- Congress API unavailability causes failure or incomplete data
- Malformed prompt input results in an error response
- Payment settlement failure via x402 prevents the call from completing

## How this service works

Congress Bill Search - Search US federal bills by keyword and return each bill's sponsor, current status, and a concise summary in one JSON response.. Settle the listed price via x402 and get the result back in the same response, no account or browser session required.

## Output

A JSON response containing a list of matching US federal bills, each with the bill's title, sponsor name, current legislative status, and a concise plain-language summary.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "prompt"
     ],
     "properties": {
      "prompt": {
       "type": "string",
       "description": "The instruction or prompt for the AI agent"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "result": {
       "type": "string",
       "description": "The agent's response text"
      }
     }
    }
   }
  }
 }
}
```

## More

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