# GovSpendPulse Contract Intelligence Brief

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

Returns a full intelligence brief on a specific federal contract opportunity, including historical award context, incumbent analysis, competitive landscape, bid/no-bid signal, and next steps.

## Facts

- Endpoint: GET https://govspendpulse.vercel.app/api/govspend/contract-brief
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/govspendpulse-contract-intelligence-brief-8c704466
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_m69Hkar7kykAZ1E3WvELR

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-contract-intelligence-brief-8c704466
```

Example prompt: Can you pull a full contract intelligence brief on SAM.gov solicitation W52P1J-25-R-0012 — I need the incumbent breakdown, competitive landscape, historical award context, and a bid/no-bid recommendation so I can decide whether to pursue it?

## When to prefer this

Use this endpoint when you need a deep, synthesized intelligence brief on a single specific federal contract opportunity — especially for bid/no-bid decisions, capture planning, or competitive positioning. Prefer this over general contract search endpoints when you already have a specific solicitation or contract number and need actionable strategic intelligence rather than a list of opportunities.

## Known failure modes

- Unknown or invalid solicitation number returns no results
- Contract opportunity not yet indexed in source databases
- Insufficient historical data for accurate incumbent or award analysis
- Rate limiting or payment failure returns 402 error
- Private or classified solicitations may return incomplete data

## How this service works

Real-time government procurement intelligence API. US federal contracts, EU tenders, UK contracts, development bank procurement. Pay-per-query via x402.

## Output

A structured intelligence brief covering: historical award context (past winners, award amounts, dates), incumbent identification and analysis, detailed requirements intelligence, competitive landscape with likely competitors, a clear bid/no-bid signal with rationale, and concrete next steps for capture or proposal preparation.

## 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)"
      },
      "naics": {
       "type": "string",
       "description": "optional NAICS code — e.g. 541512 | 541330"
      },
      "agency": {
       "type": "string",
       "description": "optional agency to narrow search — e.g. \"DHS\" | \"Air Force\" | \"VA\" | \"HHS\""
      },
      "keyword": {
       "type": "string",
       "description": "(required) contract title, topic, or solicitation number — e.g. \"DHS zero trust SOC\" | \"N0017824R0012\" | \"USAF cloud migration\""
      }
     }
    }
   },
   "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": {
  "opportunity": {
   "title": "DHS Zero Trust Architecture Implementation",
   "agency": "Department of Homeland Security",
   "sam_url": "https://sam.gov/opp/abc",
   "set_aside": "Full and Open",
   "naics_code": "541512",
   "contract_type": "IDIQ Task Order",
   "estimated_value_usd": 45000000,
   "solicitation_number": "70RSAT25R0002",
   "place_of_performance": "DC/VA/Remote",
   "period_of_performance": "5 years"
  },
  "bid_strategy": {
   "red_flags": [
    "5-year incumbent with deep agency relationships",
    "Short turnaround from draft RFP to proposal due date"
   ],
   "bid_no_bid_signal": "Conditional Bid — strong incumbent but agency has signaled desire to diversify",
   "win_probability_factors": [
    "Cleared personnel",
    "Zero Trust OEM partnerships",
    "Price competitiveness"
   ],
   "differentiators_to_emphasize": [
    "Independent vendor — no conflict with existing BAH tools",
    "Zero Trust product integrations"
   ]
  },
  "historical_context": {
   "incumbent": "Booz Allen Hamilton",
   "previous_awards": [
    {
     "agency": "DHS CISA",
     "period": "2020–2025",
     "recipient": "Booz Allen Hamilton",
     "amount_usd": 38000000
    }
   ],
   "contract_history_summary": "Single incumbent for 5 years — recompete expected Q3 2026."
  },
  "intelligence_confidence": "Medium (historical data + web)"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/govspendpulse-contract-intelligence-brief-8c704466/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)
