Get politician upcoming sponsored floor items
GET
/api/v1/public/senate-insiders/:slug/upcoming-bills3 credits / callAPI key required
Upcoming floor items a politician sponsors, each with politician-scoped conflict facts (their disclosed trades matched against the bill's verified tickers and sectors) and an identity summary. Congressional slugs only; executive-branch slugs return an empty list. An empty list for a congressional member simply means none of their bills are on the upcoming floor schedule. The matched-trade facts are neutral observations, not findings of wrongdoing.
Parameters
Path
Politician slug, e.g. ro-khanna (from /senate-insiders).
Code example
cURL
curl -X GET 'https://api.signal8.ai/api/v1/public/senate-insiders//upcoming-bills' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
fix parameters to runGET
https://api.signal8.ai/api/v1/public/senate-insiders//upcoming-billsexample · 200
{
"data": {
"items": [
{
"billKey": "hr-4500-119",
"itemKind": "bill",
"title": "To support domestic semiconductor research and workforce development.",
"chamber": "house",
"considerationProcedure": "suspension",
"status": "scheduled",
"window": {
"start": "2026-06-23",
"end": "2026-06-27",
"granularity": "week",
"confidence": 0.6,
"provenance": "weekly_schedule"
},
"marketRelevance": "medium",
"significance": 3,
"tweetSummary": "Semiconductor R&D and workforce bill heading to the floor next week.",
"plainSummary": "Authorizes grants for domestic semiconductor research and technician training programs.",
"affectedSectors": [
{
"label": "Semiconductors & Semiconductor Equipment",
"sector": "Information Technology",
"direction": "benefits",
"mechanism": "federal R&D grants"
}
],
"affectedTickers": [
{
"ticker": "NVDA",
"direction": "benefits",
"confidence": "medium",
"evidenceQuote": "grants for advanced semiconductor research"
}
],
"passOutlook": {
"stage": "floor-passage",
"rationale": "Broad bipartisan cosponsorship",
"assessment": "likely"
},
"controversyScore": 0.1,
"isMegaBill": false,
"textVerified": true,
"conflictBadge": true,
"sponsor": {
"bioguideId": "K000389",
"name": "Ro Khanna",
"party": "D",
"state": "CA"
},
"eventType": null,
"eventEvidence": null,
"nomineePosition": null,
"sponsorTradeFacts": [
{
"politician": {
"name": "Ro Khanna",
"urlSlug": "ro-khanna"
},
"role": "sponsor",
"ticker": "NVDA",
"transactionType": "Purchase",
"amountBracket": "$1,001 - $15,000",
"transactionDate": "2026-05-13",
"disclosureDate": "2026-06-03",
"source": "congressional",
"ownerLabel": "Self",
"matchBasis": "ticker"
}
],
"tradeFactsDisclaimer": "Disclosed trades are shown for transparency and do not imply any wrongdoing."
}
],
"identity": {
"bioguideId": "K000389",
"name": "Ro Khanna",
"party": "Democrat",
"state": "CA",
"chamber": "house"
},
"total": 1
}
}