# USAspending Federal Agencies Lookup

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

Returns all US federal top-tier agencies from USAspending.gov with name, abbreviation, toptier code, and current-year budget authority for use in federal spending queries.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-usaspending-agencies
- Price: $0.12/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/usaspending-federal-agencies-lookup-f66c415a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CfkFC1uKmcIhKkVgbe6Iq

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 usaspending-federal-agencies-lookup-f66c415a -d '<json body>'
```

Example prompt: Give me the full list of all US federal top-tier agencies from USAspending.gov, including their names, abbreviations, toptier codes, and current-year budget authority so I can look up the right agency code for a federal spending query.

## When to prefer this

Choose this endpoint when you need a complete, authoritative list of US federal top-tier agency codes and metadata for use with USAspending.gov queries, especially when you need to resolve a human-readable agency name to its toptier code. Preferred over manually maintaining a static agency list since it reflects current-year budget authority. Keyless and pay-per-call via x402 makes it suitable for on-demand lookups without API key management.

## Known failure modes

- Payment failure or missing x402 payment header results in 402 response
- USAspending.gov upstream unavailable may cause timeout or 503
- Empty or malformed POST body may cause 400 error if schema validation is strict
- Rate limiting if too many calls are made in rapid succession

## How this service works

All US federal top-tier agencies from USAspending.gov with name, abbreviation, toptier code and current-year budget authority. The agency-code lookup for federal spending queries. Keyless.

## Output

A list of all US federal top-tier agencies sourced from USAspending.gov, each entry containing the agency full name, abbreviation, toptier code, and current fiscal year budget authority amount. This data is used as a reference/lookup table for constructing federal spending queries.

## 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/usaspending-federal-agencies-lookup-f66c415a/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)
