# US Federal Agency Procurement Profiler

> US Federal Agency Procurement Profiler is a paid API for AI agents from api.agentstools.dev, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-15).

Returns a federal agency's procurement profile including reported obligations, outlays, top vendors, top NAICS codes, and top product-service codes in a single call.

## Facts

- Endpoint: GET https://api.agentstools.dev/govcon/agency
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/us-federal-agency-procurement-profiler-98b22488
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_J-q_-EJg3JpyWRxqNG9_C

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 us-federal-agency-procurement-profiler-98b22488
```

Example prompt: Can you pull the full procurement profile for the Department of Defense for fiscal year 2023, including their top vendors, top NAICS codes, and top product-service codes for contracts?

## When to prefer this

Use this endpoint when you need a comprehensive one-call procurement snapshot of a specific US federal agency, including spend totals and ranked vendor/category breakdowns. Prefer this over general USASpending.gov queries when you want pre-aggregated intelligence rather than raw transaction data.

## Known failure modes

- Unknown or misspelled agency name returns an error or empty result
- Invalid toptier_code returns a 400 or empty response
- Unsupported award_type enum value returns a validation error
- Requesting a future or unavailable fiscal year may return empty or partial data
- Payment failure (x402) if USDC balance is insufficient

## How this service works

Profile a US federal agency's procurement in one call: reported obligations and outlays plus top vendors, top NAICS and top product-service codes. Give an agency name or toptier code.

## Output

A structured profile of the agency's procurement activity, including total reported obligations and outlays, a ranked list of top vendors by award value, the most frequently used NAICS codes, and the top product-service codes for the specified fiscal year and award type.

## 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": {
      "year": {
       "type": "integer",
       "description": "Federal fiscal year"
      },
      "agency": {
       "type": "string",
       "description": "Agency name"
      },
      "award_type": {
       "enum": [
        "contracts",
        "direct_payments",
        "grants",
        "idvs",
        "loans",
        "other"
       ],
       "type": "string"
      },
      "toptier_code": {
       "type": "string",
       "description": "Toptier agency code"
      }
     }
    }
   },
   "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/us-federal-agency-procurement-profiler-98b22488/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)
