# srch.best Government Data Search

> srch.best Government Data Search is a paid API for AI agents from x402.srch.best, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Searches and retrieves structured U.S. government documents (rules, proposed rules, notices, and presidential documents) with pagination and date filtering

## Facts

- Endpoint: POST https://x402.srch.best/government
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/srch-best-government-data-search-f41bf122
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ejUnEAIQ3FPe7oNLX0gcp

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 srch-best-government-data-search-f41bf122 -d '<json body>'
```

Example prompt: Search government records for the latest RULE documents about 'artificial intelligence' published between 2024-01-01 and 2024-12-31, and return up to 20 results.

## When to prefer this

Choose this endpoint when you need structured, paginated access to U.S. government documents such as Federal Register rules, proposed rules, notices, or presidential documents. It is ideal for compliance research, regulatory monitoring, and policy analysis tasks where document type and date filtering are important. Prefer it over general web search when you need clean, machine-readable government data with consistent structure rather than raw HTML.

## Known failure modes

- Query too short (under 2 characters) returns validation error
- Cursor from a different query or expired session returns no results or error
- Date range with fromDate after toDate may return empty results
- Exceeding limit of 50 returns validation error
- Payment failure via x402 protocol results in 402 response and no data
- Network timeout for large result sets

## How this service works

Structured government data for agents, paid per request with x402 v2

## Output

Returns a structured list of government documents matching the query, including document type (RULE, PRORULE, NOTICE, PRESDOCU), content fields, and a pagination cursor for fetching subsequent pages of results.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "default": 10,
   "maximum": 50,
   "minimum": 1
  },
  "query": {
   "type": "string",
   "maxLength": 300,
   "minLength": 2
  },
  "cursor": {
   "type": "string",
   "maxLength": 128,
   "minLength": 1,
   "description": "Opaque continuation cursor returned by the previous response."
  },
  "toDate": {
   "type": "string",
   "format": "date"
  },
  "fromDate": {
   "type": "string",
   "format": "date"
  },
  "documentType": {
   "enum": [
    "RULE",
    "PRORULE",
    "NOTICE",
    "PRESDOCU"
   ],
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/srch-best-government-data-search-f41bf122/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.srch.best](https://www.zero.xyz/host/x402.srch.best/llms.txt)
