# GovSpendPulse Agency Intelligence

> GovSpendPulse Agency Intelligence is a paid API for AI agents from govspendpulse.vercel.app, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-15).

Returns a deep federal spending profile for any US agency, including top vendors, NAICS codes, procurement vehicles, IDIQ/GWAC contracts, entry strategy, and budget priorities from USASpending.gov data.

## Facts

- Endpoint: GET https://govspendpulse.vercel.app/api/govspend/agency-intel
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/govspendpulse-agency-intelligence-3512fc14
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YQWoGgXW4Oser2Yi6Jwls

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 govspendpulse-agency-intelligence-3512fc14
```

Example prompt: Pull the full spending profile for the Department of Homeland Security — I want to see their top vendors, NAICS codes, preferred IDIQ and GWAC vehicles, budget priorities, and a recommended entry strategy so I can build a capture plan.

## When to prefer this

Use this endpoint when you need a comprehensive agency-level spending profile for business development or capture planning against a specific US federal agency. Prefer this over keyword contract search when you want strategic vendor landscape and procurement vehicle intelligence rather than individual contract listings.

## Known failure modes

- Unknown or misspelled agency name returns an error or empty result
- Agency has minimal USASpending.gov data due to classified or off-budget spending
- Rate limiting or payment failure returns a 402 or 429 status
- Stale data if USASpending.gov feed has not been recently updated
- Ambiguous agency name resolves to wrong sub-agency

## How this service works

Federal agency spending profile, procurement intelligence, and capture strategy for any US federal agency. Returns top vendors, NAICS codes, procurement vehicles, IDIQ/GWAC contracts, entry strategy, and budget priorities from USASpending.gov data — for business-development and capture agents.

## Output

A structured intelligence brief covering the agency's top vendors by spend, most-used NAICS codes, active procurement vehicles including IDIQ and GWAC contracts, budget priorities by category, and a recommended business-development entry strategy derived from USASpending.gov data.

## 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",
     "properties": {
      "lang": {
       "type": "string",
       "description": "en | es | fr | de | ja | zh | ko | pt | ar (default: en)"
      },
      "agency": {
       "type": "string",
       "description": "(required) agency name or abbreviation — e.g. \"Department of Defense\" | \"DHS\" | \"VA\" | \"HHS\" | \"GSA\" | \"DOE\" | \"NASA\""
      },
      "keyword": {
       "type": "string",
       "description": "optional focus area within the agency — e.g. \"cybersecurity\" | \"cloud\" | \"healthcare IT\""
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "agency": "Department of Homeland Security",
  "fiscal_year": "FY2025",
  "entry_strategy": {
   "teaming_advice": "Team with an existing EAGLE II or PACTS III prime for fastest path to awards",
   "easiest_entry_point": "DHS PACTS III small business track or GSA MAS for initial access",
   "key_contracting_offices": [
    "DHS OCPO",
    "CBP Procurement Directorate",
    "CISA Office of Contracting and Procurement"
   ],
   "set_aside_opportunities": "HUBZone and 8(a) set-asides represent ~18% of DHS spend — above federal average"
  },
  "spending_trend": "Growing — DHS budget increased 8% in FY2025 with emphasis on technology modernization",
  "spending_profile": {
   "top_5_vendors": [
    {
     "name": "Leidos",
     "total_usd": 1800000000,
     "award_count": 42
    },
    {
     "name": "Booz Allen Hamilton",
     "total_usd": 980000000,
     "award_count": 31
    }
   ],
   "top_naics_codes": [
    "541512",
    "541511",
    "541330"
   ],
   "small_business_pct_est": "22%",
   "total_contract_spend_usd": 14200000000,
   "average_contract_size_usd": 4200000
  },
  "vehicle_landscape": {
   "common_vehicles": [
    "EAGLE II",
    "PACTS III",
    "SPARC II"
   ],
   "gsa_schedules_used": [
    "IT Schedule 70 / MAS IT",
    "Professional Services Schedule"
   ],
   "key_idiq_contracts": [
    "EAGLE II (IT services)",
    "PACTS III (professional services)",
    "First Source II (IT commodities)"
   ]
  },
  "procurement_priorities": [
   "Zero Trust Architecture",
   "Southwest Border Technology",
   "AI/ML for threat detection",
   "Cybersecurity workforce"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/govspendpulse-agency-intelligence-3512fc14/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from govspendpulse.vercel.app](https://www.zero.xyz/host/govspendpulse.vercel.app/llms.txt)
