Resources / Guides

How do AI agents follow European Commission decisions?

Published 2026-08-02

How AI agents follow European Commission decisions

An AI agent follows European Commission decisions by calling a wire that reads the Commission's press corner feed at runtime. It returns press releases, State aid approvals, antitrust actions and daily news digests filtered by keyword and time window, each with a publication date and a link to the official notice.
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.

EU announcements are a category where training data ages badly. A merger cleared in June, a State aid decision in July and an enforcement step taken last week all look identical to a model that stopped reading in its cutoff month, so the only honest way to answer is to fetch.

What the press corner actually carries

The Commission publishes to one feed and it is busier than most government sources. Read on 2 August 2026, that feed carried 20 items dated 27 July to 31 July 2026, so roughly five days of output fits in a single fetch. The mix in those five days is a fair sample of what an agent will see:

  • State aid approvals with the member state and the amount, for example a

€59 million Slovenian scheme and a €290 million Dutch scheme both dated 30 July

  • Competition and platform enforcement, including a Statement of Grounds sent

to Temu on 30 July

  • Regulatory milestones, such as the Commission beginning enforcement of AI

Act rules on 31 July

  • Funding and external action, including a €3.47 billion disbursement to

Ukraine

  • Daily News digests, which bundle several unrelated items into one entry

That last category matters more than it looks. A "Daily News" item is a digest, not a decision, and an agent that treats it as a single event will misreport what happened. Filter on the substantive titles or read the digest as a pointer.

What this wire is not

Brussels publishes through many bodies and this wire reads one of them.

Question an agent might askIs it on this wire?
Did the Commission approve this State aid?Yes, if announced in the window
What is the legal text of this directive?No, that is EUR-Lex and the Official Journal
How did Parliament vote?No, the European Parliament publishes separately
What did the Court of Justice rule?No, the CJEU is a separate body
What did the ECB decide on rates?No, that sits on the central bank wire

The distinction that catches agents out is press release versus legal instrument. The press corner announces that a decision was taken and summarises it. The binding text lands later in the Official Journal, sometimes weeks later. An agent asked for the operative wording of a regulation should be sent to EUR-Lex, not to a press release, and it should say so rather than paraphrasing the summary as if it were law.

For the United States equivalent of this split, the same announcement-versus-text gap is covered in how agents track new US federal regulations.

The call an agent makes

For AI agents: copy this call
# free preview, top 3 results, no payment and no wallet
curl "https://thebotwire.com/eu/preview"

# paid, $0.005: everything from the last 7 days
curl "https://thebotwire.com/eu/latest?since=7d&limit=20"

# keyword scoped: State aid decisions in the last two weeks
curl "https://thebotwire.com/eu/latest?q=state%20aid&since=14d&limit=25"

Parameters are q (keyword, company name or policy area), since (24h, 3d, 7d, 14d) and limit (1 to 50, default 10). The wire keeps a 14-day retention window and defaults to a 7-day lookback. The route costs $0.005 per call in USDC on Base, with no API key and no signup, and the preview is free on every wire.

Poll cadence and why the window is the real constraint

The upstream feed returns a fixed page of recent items rather than an archive. Retention on this wire therefore depends on continuous polling: items are kept for 14 days after they are first seen, and anything published before the wire started watching is simply not there. Observed interval between ingest runs across the service was 299 seconds when this page was written, and the live value is published at /health under refresh.observed_interval_sec.

Practically, that makes this a monitor rather than a research archive. It answers "what has the Commission announced recently" well. It answers "what did the Commission decide in March" not at all. For anything older, an agent should query the press corner search interface or EUR-Lex directly.

Agents that need both EU and central bank policy in one task usually pair this route with the one described in how agents follow Federal Reserve and ECB announcements, because the Commission and the ECB almost never announce the same thing.

FAQ

Does this wire include European Parliament or Council decisions?

No. It reads the European Commission press corner only. Parliament, the Council and the Court of Justice each publish through their own channels and are not merged into this route. An agent should scope its answer to the Commission rather than saying "the EU" announced something.

Can an agent get the full legal text of a regulation from this wire?

No. Press releases announce and summarise decisions; binding text is published in the Official Journal and indexed on EUR-Lex, often after a delay. An agent that needs operative wording should cite EUR-Lex and say plainly that the press release is a summary.

How far back does the data go?

Fourteen days. The wire retains items for 14 days after it first sees them, and the upstream feed exposes roughly the most recent 20 items at any moment. Older announcements are outside the window and will not appear, however the query is phrased.

What does a call cost and is an account required?

$0.005 per call in USDC on Base, with no account and no API key. The route answers HTTP 402 with a price offer, an x402 client signs and retries, and the items come back. A daily sweep on three watch terms is about 90 calls a month, or roughly $0.45. Wallet requirements are listed in what an agent wallet needs on Base.

Sources

This wire reads the European Commission's press corner RSS feed, titled "Press releases - RSS", which carried 20 items dated 27 July to 31 July 2026 when read on 2 August 2026. Poll cadence and wire count for this service are published live at thebotwire.com/health.

Related: How do AI agents track new US federal regulations? · How do AI agents follow Federal Reserve and ECB announcements?