List executive orders (policy events)
/api/v1/public/policy-eventsList executive orders mirrored from the Federal Register, filterable by signing-date range, affected sector, or free-text title query. Each event carries its Federal Register document number (externalId), title, signing date (eventDate), normalized affected sectors, full-text URL, and flaggedTradeCount — the number of official trades that occurred in an affected sector near the signing date. Note: flagged trades are sector-level co-occurrence (an official traded a stock in a sector the order affects, within a window of its signing date). Sector matches are broad and many trades coincide with policy activity by chance — a match is a starting point for research, not evidence of foreknowledge.
Parameters
Query
Earliest signing date inclusive (YYYY-MM-DD). Malformed dates return 400.
Latest signing date inclusive (YYYY-MM-DD). Malformed dates return 400.
Filter by canonical affected sector (one of the 11 canonical sector strings, e.g. 'Healthcare', 'Financial Services', 'Energy').
Free-text search over event titles.
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/policy-events?from=2024-01-01&to=2024-12-31&q=apple&limit=10&offset=0' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
https://api.signal8.ai/api/v1/public/policy-events?from=2024-01-01&to=2024-12-31&q=apple&limit=10&offset=0{
"data": {
"events": [
{
"externalId": "2026-11595",
"title": "Strengthening Customs Enforcement",
"eventDate": "2026-06-03",
"sectorsAffected": [
"Industrials"
],
"fullTextUrl": "https://www.federalregister.gov/documents/2026/06/10/2026-11595/strengthening-customs-enforcement",
"flaggedTradeCount": 0
},
{
"externalId": "2026-11415",
"title": "Promoting Advanced Artificial Intelligence Innovation and Security",
"eventDate": "2026-06-02",
"sectorsAffected": [
"Information Technology"
],
"fullTextUrl": "https://www.federalregister.gov/documents/2026/06/05/2026-11415/promoting-advanced-artificial-intelligence-innovation-and-security",
"flaggedTradeCount": 4
}
],
"total": 2,
"pagination": {
"limit": 25,
"offset": 0
}
}
}