# Suverse Federal Register Search

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

Searches US Federal Register documents—rules, proposed rules, notices, and executive orders—by keyword term, returning title, type, agency, and publication date.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-federal-register-search
- Price: $0.002/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-search-6fa05041
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BfX2n-RIaqmtfhFfvg2Py

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-search-6fa05041 -d '<json body>'
```

Example prompt: Search the US Federal Register for documents related to 'stablecoin regulation' and show me the titles, document types, agencies, and publication dates of what comes up.

## When to prefer this

Use this endpoint when you need fast, keyless access to US Federal Register documents for regulatory monitoring, compliance research, or policy tracking — particularly when you need to search by free-text keyword across all document types (rules, proposed rules, notices, executive orders) and want structured metadata like agency and publication date back. Prefer this over direct Federal Register API calls when operating in an agentic x402 payment context.

## Known failure modes

- Empty results if search term is too obscure or misspelled
- Overly broad results if search term is too generic
- Service timeout if upstream Federal Register API is unavailable
- Malformed request body returns 400 error
- Rate limiting or payment failure returns 402 error

## How this service works

Search US Federal Register documents (rules, proposed rules, notices, executive orders) by term, no key. Returns documents with title, type, agency, and publication date. For AI agents monitoring US regulatory activity.

## Output

Returns a list of Federal Register documents matching the search term, each including the document title, document type (rule, proposed rule, notice, executive order, etc.), the publishing agency, and the publication date.

## 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-search-6fa05041/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)
