Single executive order detail
GET
/api/v1/public/policy-events/:externalId3 credits / callAPI key required
Full detail for one executive order plus the reverse join: officials whose flagged trades store this order as their nearest event within the requested lens. Defaults to trades 1-14 days BEFORE the signing date — day 0 is always excluded (intraday ordering is unknowable). Trader rows are sector-level co-occurrence and are restatements of public disclosures. A match is a starting point for research, never evidence of wrongdoing.
Parameters
Path
Federal Register document number (e.g. '2026-11415').
Query
Days around the signing date to scan for trades (1-30, default 14).
Which side of the signing date to scan. Day 0 is always excluded.
Code example
cURL
curl -X GET 'https://api.signal8.ai/api/v1/public/policy-events/' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
fix parameters to runGET
https://api.signal8.ai/api/v1/public/policy-events/example · 200
{
"data": {
"event": {
"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
},
"traders": [
{
"slug": "jane-smith",
"name": "Jane Smith",
"ticker": "NVDA",
"sector": "Information Technology",
"transactionType": "purchase",
"transactionDate": "2026-05-27",
"disclosureDate": "2026-06-14",
"daysDelta": -6,
"matchBasis": "sector"
}
],
"window": 14,
"direction": "before",
"freshness": {
"cursorValue": "2026-06-10",
"lastTickAt": "2026-06-16T00:37:00.000Z",
"fetchedAt": "2026-06-16T00:37:02.114Z"
}
}
}