# Suverse Federal Agencies Lookup

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

Returns a list of US federal agencies from the Federal Register API, including agency names, IDs, and slugs, for agent-driven agency resolution and navigation.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-federal-agencies
- Price: $0.08/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-agencies-lookup-053ee54f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PHPllP4_6nlve07fznKBu

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-agencies-lookup-053ee54f -d '<json body>'
```

Example prompt: Can you pull up the full list of US federal agencies — I need their names, IDs, and slugs so I can figure out which agency handles environmental regulations.

## When to prefer this

Use this endpoint when an AI agent needs to enumerate or resolve US federal agencies by name, ID, or slug — particularly when building regulatory pipelines, navigating Federal Register content, or enriching data with official agency identifiers. Prefer this over scraping federalregister.gov directly, as it requires no API key and is accessible via a single paid proxy call.

## Known failure modes

- Upstream Federal Register API unavailability returns an error response
- Payment failure or invalid x402 payment header results in 402 or authentication error
- Malformed POST body may return a 400 bad request
- Rate limiting from the upstream Federal Register API may cause intermittent failures

## How this service works

The list of US federal agencies from the Federal Register API, no key. Returns agency names, ids, and slugs. For AI agents resolving and navigating US agencies.

## Output

A structured list of US federal agencies sourced from the Federal Register API, including each agency's human-readable name, numeric ID, and URL-friendly slug. The response enables downstream resolution of agency identity for regulatory lookups, navigation, or enrichment workflows.

## 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-agencies-lookup-053ee54f/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)
