Get politician sponsored bills
GET
/api/v1/public/senate-insiders/:slug/sponsored-bills3 credits / callAPI key required
Legislation sponsored by a politician, sourced from Congress.gov. Each bill carries its number, title, policy area, introduced date, latest action, and a public Congress.gov URL. Executive-branch slugs return an empty list (they do not sponsor legislation).
Parameters
Path
Politician slug, e.g. ro-khanna (from /senate-insiders).
Query
Congress number to filter (default 119, the current session).
Maximum bills to return (1-50, default 10).
Number of results to skip (default 0)
Code example
cURL
curl -X GET 'https://api.signal8.ai/api/v1/public/senate-insiders//sponsored-bills?limit=10&offset=0' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
fix parameters to runGET
https://api.signal8.ai/api/v1/public/senate-insiders//sponsored-bills?limit=10&offset=0example · 200
{
"data": {
"bills": [
{
"billNumber": "H.R.4500",
"title": "To support domestic semiconductor research and workforce development, and for other purposes.",
"congress": 119,
"policyArea": "Science, Technology, Communications",
"introducedDate": "2026-02-11",
"latestAction": {
"date": "2026-03-04",
"text": "Referred to the Subcommittee on Research and Technology."
},
"url": "https://www.congress.gov/bill/119th-congress/house-bill/4500"
},
{
"billNumber": "H.R.4122",
"title": "To establish protections for consumers using artificial intelligence services.",
"congress": 119,
"policyArea": "Commerce",
"introducedDate": "2026-01-22",
"latestAction": {
"date": "2026-02-09",
"text": "Referred to the House Committee on Energy and Commerce."
},
"url": "https://www.congress.gov/bill/119th-congress/house-bill/4122"
}
],
"total": 37
}
}