Search Parliamentary Bills
bills_search_billsSearch UK parliamentary bills by keyword, session, house, or legislative stage to find current status and details.
Instructions
Search UK parliamentary bills by keyword, session, house, or legislative stage.
Returns a paginated page of bill summaries including title, current stage, and whether it has become an Act. Use bills_get_bill with the bill ID for full detail.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes | BillSearchInput with query, optional session/house/stage filters, pagination. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | The search term that was used | |
| offset | Yes | Number of results skipped before this page | |
| limit | Yes | Maximum results requested in this call | |
| returned | Yes | Number of results actually on this page | |
| total | No | Total results matching the query across all pages, if the upstream API reported it. None if unknown. | |
| has_more | Yes | True if more results exist beyond this page. Re-call with offset=offset+returned to fetch the next page. | |
| bills | No | Matching bills. Use the integer `id` field from any bill to call bills_get_bill for full detail. |