# Suverse Federal Register Executive Orders API

> Suverse Federal Register Executive Orders API is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-14).

Retrieves the latest US Executive Orders from the Federal Register, including title, document number, abstract, and publication date.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-regulatory-fedreg-executive-orders
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-federal-register-executive-orders-api-3a372c21
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RFUfof0CdT_jfpmWLFpDv

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 suverse-federal-register-executive-orders-api-3a372c21 -d '<json body>'
```

Example prompt: Can you pull the latest executive orders from the Federal Register for me? I need the titles, document numbers, abstracts, and publication dates so I can track recent presidential actions.

## When to prefer this

Choose this endpoint when you need structured, up-to-date executive order data directly from the official Federal Register without building your own scraper or API integration. It is ideal for policy tracking dashboards, regulatory compliance workflows, civic monitoring tools, or AI agents that need to stay current on presidential directives. Prefer this over raw web scraping when you need clean, structured fields (title, document number, abstract, date) with a simple API call.

## Known failure modes

- Federal Register API upstream outage returns an error or empty response
- No new executive orders published in the recent window returns an empty result set
- Payment failure (x402) if USDC payment of $0.06 is not properly submitted
- Malformed POST body or incorrect bodyType causes request rejection
- Rate limiting or quota exceeded on upstream Federal Register API

## How this service works

Retrieve the latest US Executive Orders from the Federal Register, with title, document number, abstract and publication date. Official Federal Register API filtered to presidential document type executive_order. Useful for policy tracking and civic monitoring.

## Output

Returns a list of recent US Executive Orders sourced from the Federal Register API, each containing the order's title, document number, abstract summary, and publication date, filtered specifically to presidential documents of type executive_order.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/suverse-federal-register-executive-orders-api-3a372c21/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
