/api/legislative/bills/{congress}/{billType}/{billNumber}Bill detail
Returns the same bill detail model used by the public bill page, including summaries, sponsors, committees, subjects, amendments, related records, text versions, votes, sectors, and finance context when available.
Source
Congress.gov, House votes, FEC context where linked
Scopes
bills:read
Request example
curl -H "Authorization: Bearer $LAWLINTER_API_KEY" "https://example.com/api/legislative/bills/119/s/98"Response example
{
"bill": {
"congress": 119,
"billType": "s",
"billNumber": "98",
"title": "Rural Broadband Protection Act of 2025",
"lifecycleStatus": "became_law"
},
"sponsors": [],
"summaries": [],
"textVersions": [],
"sectorImpacts": []
}