# Riley Craig x402 Agent Store — Government Contract Opportunities Intel

> Riley Craig x402 Agent Store — Government Contract Opportunities Intel is a paid API for AI agents from x402-agent-store.rileycraig14.workers.dev, paid per call via x402, $0.09/call, status unknown (last checked 2026-09-15).

Returns scored, filtered government contract opportunities (new awards, recompetes) for a given sector and optional US state, paid per call in USDC via x402.

## Facts

- Endpoint: GET https://x402-agent-store.rileycraig14.workers.dev/intel/opportunities
- Price: $0.09/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/riley-craig-x402-agent-store-government-contract-opportunities-intel-03433969
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ElJNrk3R_TCaO0ehe5Q4z

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 riley-craig-x402-agent-store-government-contract-opportunities-intel-03433969
```

Example prompt: Pull the latest government contract opportunities in the cybersecurity sector in Virginia for the past 6 months — show me what's new and urgent so I can figure out who to target or track.

## When to prefer this

Use this endpoint when an AI agent needs actionable, pre-scored government contracting intelligence filtered by industry sector and/or US state — especially when the agent needs to identify subcontracting opportunities or track recompete windows. Prefer this over raw USASpending.gov queries when you need urgency scoring and recommended actions out of the box, and when you want pay-per-call access with no API key setup.

## Known failure modes

- Missing required 'sector' query param returns 400 or empty results
- Invalid state code returns no results or error
- Lookback months outside 1-24 range may return default or error
- Payment failure (insufficient USDC balance) returns HTTP 402
- No matching opportunities for niche sector/state combo returns count:0 with empty signals array

## How this service works

Machine-payable data APIs for AI agents — 35 endpoints across web search, on-chain reads, trading data, and AI-visibility. Pay per call in USDC via x402 on Base. No API keys, no signup.

## Output

A JSON object with a count of matching signals and an array of opportunity records, each containing the contract title, dollar value, an urgency score (0–1), the award recipient, the type of change (e.g. 'new award'), a plain-English explanation of why it matters, and a recommended action (e.g. 'target as subcontractor').

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "sector"
     ],
     "properties": {
      "state": {
       "type": "string",
       "description": "Optional 2-letter US state to filter place of performance, e.g. AZ"
      },
      "months": {
       "type": "number",
       "description": "Lookback months 1-24 (default 6)"
      },
      "sector": {
       "type": "string",
       "description": "Sector/keyword, e.g. 'construction', 'cybersecurity', 'AI'"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "count": {
       "type": "number"
      },
      "signals": {
       "type": "array"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 8,
  "state": "AZ",
  "sector": "construction",
  "signals": [
   {
    "title": "...",
    "value": 420000,
    "urgency": 0.91,
    "recipient": "...",
    "source_change": "new award",
    "why_it_matters": "Large new award in your sector and state.",
    "recommended_action": "Target as subcontractor or track the recompete window."
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/riley-craig-x402-agent-store-government-contract-opportunities-intel-03433969/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-agent-store.rileycraig14.workers.dev](https://www.zero.xyz/host/x402-agent-store.rileycraig14.workers.dev/llms.txt)
