# GovEdge Federal Contract Intelligence

> GovEdge Federal Contract Intelligence is a paid API for AI agents from govedge.lonestaroracle.xyz, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-15).

Returns a report on US federal contract awards, SAM.gov opportunities, agency spending, and NAICS sector breakdowns for a given query.

## Facts

- Endpoint: GET https://govedge.lonestaroracle.xyz/report
- 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/govedge-federal-contract-intelligence-8c9b4ebc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_snhBcI9WncL_E_pKF2lhq

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 govedge-federal-contract-intelligence-8c9b4ebc
```

Example prompt: Pull a GovEdge federal contract intelligence report on recent awards and active SAM.gov opportunities in the cybersecurity sector under NAICS code 541512, with a breakdown of top agencies spending and contractor recipients.

## When to prefer this

Use this endpoint when an agent needs authoritative US federal contracting intelligence — specifically SAM.gov opportunity listings, awarded contract data, agency spend breakdowns, or NAICS sector analysis — without maintaining a government data subscription. At $0.20/report via x402 micropayment, it's ideal for on-demand procurement research workflows.

## Known failure modes

- Payment not processed — x402 micropayment on Base failed, report not returned
- Invalid or unrecognized NAICS code — no matching sector data returned
- No results found for specified agency or keyword
- Service unavailable or rate limit exceeded
- Malformed request parameters returning empty or error response

## How this service works

US federal contract awards, SAM.gov opportunities, agency spend analysis, NAICS sector breakdown. $0.20/report via x402 on Base.

## Output

A structured report covering US federal contract awards, active SAM.gov procurement opportunities, agency-level spend analysis, and a NAICS sector breakdown — all filtered to the requested query parameters.

## Example request

```json
{
 "naics": "541512",
 "agency": "Department of Defense",
 "days_back": 7,
 "min_amount": 10000000
}
```

## Request schema (JSON Schema)

```json
{
 "name": "GovEdge — Federal Contract Intelligence",
 "tags": [
  "government",
  "contracts",
  "federal",
  "spending",
  "defense"
 ],
 "type": "object",
 "version": "1.0.0",
 "category": "data",
 "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": {
      "naics": {
       "type": "string",
       "title": "Naics"
      },
      "agency": {
       "type": "string",
       "title": "Agency"
      },
      "ticker": {
       "type": "string",
       "title": "Ticker"
      },
      "days_back": {
       "type": "integer",
       "title": "Days Back",
       "default": 7
      },
      "min_amount": {
       "type": "number",
       "title": "Min Amount",
       "default": 10000000
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {}
   }
  }
 },
 "description": "US federal contract awards, SAM.gov opportunities, agency spend analysis, NAICS sector breakdown. $0.20/report via x402 on Base."
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/govedge-federal-contract-intelligence-8c9b4ebc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from govedge.lonestaroracle.xyz](https://www.zero.xyz/host/govedge.lonestaroracle.xyz/llms.txt)
