# PayAI GovCon Agency Procurement Profiler

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

Returns a comprehensive procurement profile for a US federal agency, including reported obligations, outlays, top vendors, top NAICS codes, and top product-service codes.

## Facts

- Endpoint: GET https://payai.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/payai-govcon-agency-procurement-profiler-0d46fab2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_q3c7f2_I7wIIbV095BS84

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 payai-govcon-agency-procurement-profiler-0d46fab2
```

Example prompt: Can you pull the full procurement profile for the Department of Defense for fiscal year 2023 — I want obligations, outlays, top vendors, and top NAICS codes for contracts?

## When to prefer this

Choose this endpoint when you need a one-call comprehensive snapshot of a federal agency's procurement posture — obligations, outlays, top vendors, and classification codes — rather than querying USASpending.gov directly or assembling multiple data calls. Ideal for GovCon market research, competitive intelligence on agency spending patterns, or quickly understanding which vendors dominate a specific agency's budget.

## Known failure modes

- Unknown agency name or toptier code returns an error or empty result
- Invalid fiscal year returns no data or an error
- Unsupported award_type enum value returns a validation error
- Agency with no USASpending data returns empty or null fields
- Rate limiting or payment failure (x402) blocks the request

## 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 procurement profile for the specified agency, including total reported obligations and outlays, a ranked list of top vendors by award amount, the most-used NAICS codes, and the top product-service codes — all filtered by fiscal year and optionally by award type (contracts, grants, etc.).

## 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/payai-govcon-agency-procurement-profiler-0d46fab2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payai.agentstools.dev](https://www.zero.xyz/host/payai.agentstools.dev/llms.txt)
