# GovSpendPulse US Federal Contract & Award Search

> GovSpendPulse US Federal Contract & Award Search is a paid API for AI agents from govspendpulse.theaslangroupllc.com, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-14).

Searches USASpending.gov real-time data to return top federal contract awards filtered by keyword, NAICS code, agency, or state — with recipient, amount, agency, period, and vendor intelligence.

## Facts

- Endpoint: GET https://govspendpulse.theaslangroupllc.com/api/govspend/us-contracts
- 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/govspendpulse-us-federal-contract-award-search-60861c44
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7Abs7XJVV4IzKWmt6PIHd

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-us-federal-contract-award-search-60861c44
```

Example prompt: Pull the top federal contract awards for cybersecurity services in Virginia, NAICS code 541519 — I want to see who the winning vendors are, the award amounts, and which agencies are spending the most.

## When to prefer this

Use this endpoint when you need historical or recent federal contract award data — who won, how much, and which agency awarded it. Prefer this over SAM.gov opportunity search when you want awarded/executed contracts rather than open solicitations. Ideal for vendor competitive intelligence, market sizing, and identifying incumbent contractors in a specific domain or geography.

## Known failure modes

- No awards found for the given keyword/NAICS/agency combination — returns empty result set
- Invalid NAICS code format causes query error
- State filter uses non-standard abbreviation and returns no results
- USASpending.gov upstream API unavailable, causing timeout or 502
- Overly broad keyword returns too many results with low relevance

## How this service works

Federal contract / award search and government spending lookup by keyword, NAICS, agency, or state — real-time USASpending.gov data. Returns top awards with recipient, amount, agency, period, and vendor market intelligence, for business-development and market-intelligence agents.

## Output

Returns a list of top federal contract awards matching the query, including recipient/vendor name, award amount in USD, awarding agency, period of performance dates, and vendor market intelligence summary — all sourced from real-time 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)"
      },
      "limit": {
       "type": "string",
       "description": "Awards to return, 1-20 (default 10). Pay-per-award via the upto scheme: $0.03 + $0.0025/award (10 awards = $0.055); exact-scheme payments are flat $0.08."
      },
      "naics": {
       "type": "string",
       "description": "NAICS code — e.g. 541512 (computer systems design) | 541330 (engineering) | 236220 (commercial construction)"
      },
      "state": {
       "type": "string",
       "description": "two-letter US state code — e.g. VA | CA | TX | MD"
      },
      "keyword": {
       "type": "string",
       "description": "search term — e.g. \"cybersecurity\" | \"cloud computing\" | \"management consulting\" | \"construction\""
      },
      "year_from": {
       "type": "string",
       "description": "fiscal year start — e.g. 2024 | 2025 (default: prior year)"
      }
     }
    }
   },
   "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": {
  "top_awards": [
   {
    "type": "Delivery Order",
    "naics": "541512",
    "state": "VA",
    "agency": "Department of Defense",
    "period": "2025-03-01 to 2026-02-28",
    "recipient": "Booz Allen Hamilton",
    "amount_usd": 48200000,
    "sub_agency": "DISA",
    "description": "Zero trust architecture implementation and SOC operations"
   }
  ],
  "market_signal": "DoD cybersecurity spending surged 22% YoY driven by zero trust mandates. DISA and NSA are the dominant buyers.",
  "query_summary": {
   "period": "2025-01-01 to 2026-06-07",
   "keyword": "cybersecurity",
   "naics_code": "541512",
   "total_awards_returned": 10
  },
  "vendor_insight": "Small business set-asides account for ~18% of awards in this NAICS — most opportunities are unrestricted full-and-open.",
  "spending_summary": {
   "top_agency": "Department of Defense",
   "top_recipient": "Booz Allen Hamilton",
   "total_value_usd": 312000000,
   "average_award_usd": 31200000
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/govspendpulse-us-federal-contract-award-search-60861c44/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from govspendpulse.theaslangroupllc.com](https://www.zero.xyz/host/govspendpulse.theaslangroupllc.com/llms.txt)
