# Federal Register Regulatory & Enforcement Document Search

> Federal Register Regulatory & Enforcement Document Search is a paid API for AI agents from api.agentstools.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Searches US Federal Register for regulatory and enforcement documents (rules, proposed rules, notices) mentioning a named entity, returning title, type, agency, date, abstract, and link.

## Facts

- Endpoint: GET https://api.agentstools.dev/legal/regulatory
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/federal-register-regulatory-enforcement-document-search-6c06bc48
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vCSWQt6JW_-b7liNfv3E8

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 federal-register-regulatory-enforcement-document-search-6c06bc48
```

Example prompt: Can you pull up any Federal Register rules, proposed rules, or enforcement notices mentioning 'Meta Platforms' — filter to FTC actions only and return up to 15 documents?

## When to prefer this

Use this endpoint when you need to find US federal regulatory, rulemaking, or enforcement documents from the Federal Register that mention a specific business entity. Prefer this over general web search when you need structured, authoritative, public-domain government records with metadata (agency, date, type). The optional CIK and QID parameters help disambiguate common company names. Best for compliance research, due diligence, and regulatory monitoring workflows.

## Known failure modes

- No documents found for an obscure or misspelled entity name — returns empty result set
- Invalid agency slug returns an error or empty results
- Limit parameter out of bounds (below 1 or above 25) triggers a validation error
- Ambiguous entity names may return unrelated documents without CIK or QID hints
- Rate limiting or payment failure (x402) if USDC funds are insufficient

## How this service works

Find US federal regulatory and enforcement documents mentioning an entity in the Federal Register. Returns rules, proposed rules and notices with title, type, agency, date, abstract and link. Source: Federal Register, public-domain.

## Output

A list of up to 25 Federal Register documents mentioning the queried entity, each including the document title, document type (rule, proposed rule, notice), issuing agency, publication date, a short abstract, and a direct link to the Federal Register entry.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "cik": {
       "type": "string",
       "description": "Optional SEC CIK id hint"
      },
      "qid": {
       "type": "string",
       "description": "Optional Wikidata QID id hint"
      },
      "name": {
       "type": "string",
       "description": "Business entity name to search"
      },
      "limit": {
       "type": "integer",
       "maximum": 25,
       "minimum": 1,
       "description": "Max documents to return, default 10"
      },
      "agency": {
       "type": "string",
       "description": "Optional agency slug filter, e.g. federal-trade-commission"
      }
     }
    }
   },
   "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/federal-register-regulatory-enforcement-document-search-6c06bc48/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentstools.dev](https://www.zero.xyz/host/api.agentstools.dev/llms.txt)
