# Suverse Federal Register Agency Detail

> Suverse Federal Register Agency Detail 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).

Returns detailed information about a single US federal agency by slug, including name, description, short name, and parent/child agency relationships, via a keyless Federal Register API.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-civic-fedreg-agency
- 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-agency-detail-8ea09ccb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QmUlLZBqGCYLCRBGAi11R

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-agency-detail-8ea09ccb -d '<json body>'
```

Example prompt: Can you look up the Federal Register details for the EPA — I need its full name, description, short name, and which agencies are above or below it in the hierarchy?

## When to prefer this

Use this endpoint when you need authoritative Federal Register metadata for a specific US federal agency identified by its slug — especially useful for resolving regulatory authorities, building agency hierarchy trees, or enriching compliance documents with official agency names and descriptions. Prefer this over general web search when you need structured, machine-readable agency data without API keys.

## Known failure modes

- Invalid or unrecognized agency slug returns an error or empty result
- Malformed POST body causes a request parsing error
- Network or upstream Federal Register API unavailability returns a 5xx error
- Payment failure via x402 protocol prevents the request from being processed
- Slug typos or alternate naming conventions yield no match

## How this service works

Single US federal agency detail by slug: name, description, parent/child agencies, short name. Keyless Federal Register API. For agents resolving regulatory authorities.

## Output

A structured record for the requested US federal agency including: official full name, short name/abbreviation, textual description of the agency's purpose, parent agency reference (if applicable), and a list of child agencies. This data comes from the Federal Register's official agency registry.

## 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-agency-detail-8ea09ccb/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)
