Recently sponsored legislation
GET
/api/v1/public/senate-insiders/discovery/sponsored-bills3 credits / callAPI key required
Returns recently introduced bills sponsored in Congress, sourced from Congress.gov, newest action first. Each bill carries its number, title, congress, policy area, latest legislative action, and a link to the bill on Congress.gov.
Parameters
Query
Congress number to query (e.g. 119 = 2025-2026).
Maximum number of bills to return.
Number of results to skip (default 0)
Code example
cURL
curl -X GET 'https://api.signal8.ai/api/v1/public/senate-insiders/discovery/sponsored-bills?limit=10&offset=0' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
GET
https://api.signal8.ai/api/v1/public/senate-insiders/discovery/sponsored-bills?limit=10&offset=0example · 200
{
"success": true,
"data": {
"bills": [
{
"billNumber": "S.4678",
"title": "A bill to amend title 18, United States Code, to prohibit the provision of minor-simulating chatbots that engage in sexually explicit conduct or sexually explicit conversation, and for other purposes.",
"congress": 119,
"policyArea": null,
"latestAction": {
"date": "2026-06-03",
"text": "Read twice and referred to the Committee on the Judiciary."
},
"url": "https://www.congress.gov/bill/119th-congress/senate-bill/4678"
},
{
"billNumber": "HR.8746",
"title": "VICTIM Act of 2026",
"congress": 119,
"policyArea": null,
"latestAction": {
"date": "2026-05-12",
"text": "Referred to the House Committee on the Judiciary."
},
"url": "https://www.congress.gov/bill/119th-congress/house-bill/8746"
}
],
"total": 16743
}
}