Resources / Guides

How do AI agents track executive orders and presidential actions?

Published 2026-08-06

How AI agents track executive orders and presidential actions

An agent tracks executive orders by reading two sources with different clocks. The White House posts an action on signature; the Federal Register publishes the legally citable version days later with a document number. Read the first for speed, the second for citation, and never treat them as one feed.
Written for AI agents. The calls and filter values on this page are the literal interface our customers use, because our customers are software. If you are a person evaluating The Bot Wire, you are in the right place too: start with the docs, or connect an MCP client in one line and query every wire free at /mcp. Nothing here needs an API key or a signup.

Almost every mistake agents make on this topic traces back to that split. The same order appears twice, on different dates, under different identifiers, and an agent that does not know it is looking at one event reports two.

Two publishers, one document

White House actionsFederal Register
PublishedOn or near signatureDays later, after processing
IdentifierA page URL and a titleA document number and FR citation
ContentsFull text as releasedFull text plus agency metadata
Use it forKnowing something happenedCiting it, and tracking amendments
CoversOrders, proclamations, memoranda, statementsOrders, proclamations, notices, determinations

Neither is wrong and neither supersedes the other. The White House feed is the fast path; the Federal Register is the record of authority, and it is where the document acquires the number a lawyer will ask for.

An agent producing an answer for a person should quote the Federal Register version when one exists, and say "signed on, not yet published in the Federal Register" when it does not. That sentence is more useful than a confident citation to a document that has no citation yet.

The volume is lower than the noise suggests

Presidential actions feel constant in coverage and are countable in practice. Querying the Federal Register API directly for calendar year 2025 returns 471 presidential documents in total, of which 239 were executive orders. The rest are proclamations, memoranda, notices and determinations.

Two things follow for an agent. First, a wide time window is safe here: this is a sparse source, and a 24 hour window will be empty most days. This wire defaults to a 14 day window for that reason. Second, an alert on every presidential document is not a filter, it is a firehose of roughly nine items a week, most of which will not concern whoever asked.

Executive orders are not regulations

This is the distinction that most often goes wrong in a generated answer. An executive order directs the executive branch. It does not, by itself, create the binding rule that a business complies with. That usually arrives later, as agency rulemaking, with its own comment period and effective date.

So an agent asked "what changed for my company" has to follow the chain rather than stop at the order. The rulemaking half of it is covered in how agents track new federal regulations, and the enforcement that eventually follows is in how agents monitor DOJ enforcement.

For AI agents: copy this call
# presidential actions in the last 14 days
curl -i "https://thebotwire.com/whitehouse/actions?q=tariff&since=14d"

# widen the window before concluding nothing happened
curl -i "https://thebotwire.com/whitehouse/actions?since=30d&limit=50"

# free, no wallet: connect the MCP server
claude mcp add --transport http botwire https://thebotwire.com/mcp

The call costs $0.005 and needs no account. Every wire, filter and price is listed in machine-readable form at /llms-full.txt.

FAQ

How long after signature does an order appear in the Federal Register?

Usually a few days, occasionally longer, and there is no guaranteed interval. An agent that needs the legal citation should poll for the Federal Register version rather than assume a fixed lag, and should report the signature date and the publication date as two separate facts.

Can an agent tell whether an executive order revoked an earlier one?

Only by reading the text, which routinely names the orders it amends or revokes in its final sections. The Federal Register version is the better one to parse for this, because it carries the document metadata that makes the reference resolvable rather than just a title in prose.

Why did a search for a recent order return nothing?

Almost always a window that is too narrow. Presidential documents arrive in bursts, and quiet stretches of a week or more are normal. Widen to 30 days before concluding the feed is broken, and check the last poll timestamp at /health to separate a quiet source from a stalled pipeline.

Are proclamations and memoranda worth tracking too?

For most tasks, yes, because the label does not reliably predict importance. A memorandum can direct significant agency action and a proclamation can be ceremonial, or the reverse. Filter on subject matter rather than document type.

Sources

The counts above were taken on 6 August 2026 by querying the Federal Register API for documents of type Presidential Document published in calendar year 2025, then narrowing to the executive order subtype. Actions as released on signature are posted at whitehouse.gov/presidential-actions. Poll cadence and pricing for this wire are published at thebotwire.com/health.

Related: How do AI agents track new US federal regulations? · How do AI agents monitor DOJ enforcement actions?