# AnswerPool Executive Orders Feed

> AnswerPool Executive Orders Feed is a paid API for AI agents from answerpool.io, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns the latest executive orders, proclamations, and presidential memoranda from the Federal Register, newest first, with optional keyword filtering and normalized metadata including agencies, topics, and links.

## Facts

- Endpoint: POST https://answerpool.io/v1/regs/eo
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/answerpool-executive-orders-feed-933fbad7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gHFMHz7qejJ2EqWk9Ugol

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability answerpool-executive-orders-feed-933fbad7 -d '<json body>'
```

Example prompt: Pull the latest executive orders from the Federal Register and show me the most recent ones related to supply chains — I want the titles, publication dates, and links.

## When to prefer this

Choose this endpoint when you need a single, clean, normalized feed of the latest presidential executive actions (EOs, proclamations, memoranda) without having to parse the Federal Register's XML or navigate its EO-specific sections yourself. It is especially useful when you want to filter by keyword in one call and get structured metadata including agencies and topics. Prefer this over scraping federalregister.gov directly or building your own parser.

## Known failure modes

- No documents returned if the search term matches nothing — returns count:0 and empty documents array
- Stale as_of timestamp if the Federal Register upstream is delayed
- Malformed or overly broad search terms may return unrelated documents
- Network or payment authorization failure returns HTTP 402 or 5xx

## How this service works

AnswerPool turns SEC EDGAR, the Federal Register, USAspending, NIH, BLS and OpenAlex into structured JSON answers that AI agents and developers fetch in one call. 69 endpoints free, no account; derived analyses $0.02–$0.05 per call by card credits or USDC (x402). MCP server, full provenance.

## Output

A JSON object with a timestamp (as_of), total count, and an array of normalized presidential documents. Each document includes its title, type (Executive Order, Proclamation, or Presidential Memorandum), Federal Register URL, document number, publication date, issuing agencies, topics, abstract, effective date, and CFR references where available.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "as_of": "2026-09-02T14:00:00Z",
  "count": 1,
  "documents": [
   {
    "url": "https://www.federalregister.gov/d/2026-11111",
    "type": "Presidential Document",
    "flags": [],
    "title": "Executive Order 14999 of August 26, 2026: Strengthening Supply Chains",
    "action": null,
    "topics": [],
    "abstract": null,
    "agencies": [
     "Executive Office of the President"
    ],
    "docket_ids": [],
    "significant": null,
    "effective_on": null,
    "cfr_references": [],
    "document_number": "2026-11111",
    "publication_date": "2026-08-28",
    "comments_close_on": null,
    "days_to_effective": null,
    "days_to_comment_close": null,
    "regulation_id_numbers": []
   }
  ],
  "total_matching": 12
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/answerpool-executive-orders-feed-933fbad7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from answerpool.io](https://www.zero.xyz/host/answerpool.io/llms.txt)
