Government
Recent presidential executive orders API
List recent US presidential executive orders from the keyless federalregister.gov API, normalized into a flat schema (EO number, title, signing/publication date, signing president, citation, URL) with optional president and signed-after filters. Answers 'what are the latest executive orders?','which EOs did president X sign since date Y?'.
Price$0.01per request
MethodPOST
Route/v1/gov/executive-orders
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
govexecutive-orderpresidentfederal-registerwhite-housepolicyuseo
API URL
Integration docshttps://x402.hexl.dev/v1/gov/executive-ordersExample request
{
"limit": 2
}Example response
{
"total": 1544,
"documents": [
{
"documentNumber": "2026-11181",
"title": "Removing Unnecessary and Counterproductive Restrictions on Access to Federal Lands",
"type": "Presidential Document",
"abstract": null,
"publicationDate": "2026-06-03",
"signingDate": "2026-05-29",
"effectiveOn": null,
"agencies": [
"Executive Office of the President"
],
"citation": "91 FR 33577",
"executiveOrderNumber": "14408",
"president": "Donald Trump",
"url": "https://www.federalregister.gov/documents/2026/06/03/2026-11181/removing-unnecessary-and-counterproductive-restrictions-on-access-to-federal-lands",
"pdfUrl": null
}
]
}Input schema
{
"type": "object",
"required": [],
"properties": {
"president": {
"type": "string",
"examples": [
"donald-trump",
"joe-biden"
]
},
"signedAfter": {
"type": "string",
"examples": [
"2026-01-01"
]
},
"limit": {
"type": "number",
"minimum": 1,
"maximum": 50,
"default": 10
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}