Upcoming market-relevant floor items
/api/v1/public/floor-intelligence/itemsForward-looking legislative catalyst calendar: upcoming House and Senate floor votes (bills and Senate cloture motions) filtered to items that can move tickers. Each item carries a predicted vote window (start/end/granularity/confidence/provenance), market relevance, significance (1-5), affected sectors with direction and mechanism, verified affected tickers (each with a verbatim evidence quote substring-verified against the bill text — no unverified tickers), a pass outlook, the consideration procedure (suspension-calendar bills pass ~98% of the time), and a conflict badge when the sponsor disclosed a trade in a verified affected ticker. An EMPTY list is a NORMAL state — it means nothing market-relevant is scheduled in the window, not an error. Vote windows are predictions: check `window.provenance` for trust level and `window.granularity` for precision. Sponsor trade facts are restatements of public STOCK Act disclosures (with both transaction and disclosure dates) — never presented as evidence of wrongdoing.
Parameters
Query
Earliest vote-window date inclusive (YYYY-MM-DD, default today).
Latest vote-window date inclusive (YYYY-MM-DD, default today + 14 days).
Minimum market relevance. 'none' is an explicit opt-in to the full audit trail incl. non-market items (rarely useful).
Maximum results (1-100, default 25).
Number of results to skip (default 0)
Code example
curl -X GET 'https://api.signal8.ai/api/v1/public/floor-intelligence/items?from=2024-01-01&to=2024-12-31&limit=10&offset=0' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
https://api.signal8.ai/api/v1/public/floor-intelligence/items?from=2024-01-01&to=2024-12-31&limit=10&offset=0{
"data": {
"items": [
{
"billKey": "119-hr-3633",
"itemKind": "bill",
"title": "Critical Minerals Supply Chain Security Act",
"chamber": "house",
"considerationProcedure": "suspension",
"status": "scheduled",
"window": {
"start": "2026-06-18T00:00:00.000Z",
"end": "2026-06-18T23:59:59.000Z",
"granularity": "day",
"confidence": 0.8,
"provenance": "weekly_schedule"
},
"marketRelevance": "high",
"significance": 4,
"tweetSummary": "House suspension-calendar bill directs federal stockpiling of rare-earth and lithium supply, a tailwind for domestic critical-minerals miners and refiners.",
"plainSummary": "The bill directs the Department of Energy to expand strategic stockpiles of rare-earth elements and battery-grade lithium and to prioritize permitting for domestic processing facilities, favoring U.S. critical-minerals producers.",
"affectedSectors": [
{
"label": "Metals & Mining",
"sector": "Materials",
"direction": "benefited",
"mechanism": "Federal stockpiling and permitting priority for domestic rare-earth and lithium producers."
}
],
"affectedTickers": [
{
"ticker": "MP",
"direction": "benefited",
"confidence": "high",
"evidenceQuote": "expand the strategic stockpile of rare earth elements mined or processed within the United States"
},
{
"ticker": "ALB",
"direction": "benefited",
"confidence": "medium",
"evidenceQuote": "prioritize permitting for domestic battery-grade lithium processing facilities"
}
],
"passOutlook": {
"stage": "floor-passage",
"rationale": "Suspension-calendar bills require a two-thirds majority and almost always pass; bipartisan supply-chain support.",
"assessment": "likely"
},
"controversyScore": 1,
"isMegaBill": false,
"textVerified": true,
"conflictBadge": true,
"sponsor": {
"bioguideId": "K000389",
"name": "Sample Member",
"party": "R",
"state": "TX"
},
"eventType": null,
"eventEvidence": null,
"nomineePosition": null
}
],
"pagination": {
"limit": 25,
"offset": 0,
"total": 1
}
}
}