# GovParse VA Opportunities Search

> GovParse VA Opportunities Search is a paid API for AI agents from api.govparse.io, paid per call via x402, $1.25/call, status unknown (last checked 2026-09-14).

Search active Department of Veterans Affairs contract solicitations from SAM.gov by keyword, NAICS, set-aside type, state, or posted date.

## Facts

- Endpoint: GET https://api.govparse.io/v1/va/opportunities/search
- Price: $1.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/govparse-va-opportunities-search-f30c12f6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WxmlixoYS-ZoyQLhOq7el

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 govparse-va-opportunities-search-f30c12f6
```

Example prompt: Find me active VA contract solicitations for medical imaging equipment posted after 2026-07-01, filtered to SDVOSBC set-asides in Florida — show me up to 25 results.

## When to prefer this

Use this endpoint when you specifically need VA Department solicitations rather than all federal opportunities. It is ideal for businesses targeting VA medical centers, VA construction, or VA services, and for those qualifying under VA-specific set-asides like SDVOSBC or VOSB. Prefer the broader unified search endpoint if you need opportunities across all federal agencies.

## Known failure modes

- No results returned if filters are too narrow or no active solicitations match the criteria
- Invalid NAICS or set-aside codes return empty results or an error
- Date format errors (not YYYY-MM-DD) may cause query failure
- Rate limits or payment failures (x402) block the request
- Stale data if SAM.gov pipeline has not refreshed recently

## How this service works

What is the Department of Veterans Affairs soliciting right now? A VA-focused slice of the SAM.gov contract-opportunity pipeline (department = Veterans Affairs): search active VA solicitations by keyword, NAICS, set-aside (SDVOSBC, VOSB, SBA...), place-of-performance state, or posted date. Returns the solicitation, NAICS/PSC, set-aside, deadline, and link — VA medical-center construction, equipment, and services buys for device, construction, and staffing sellers.

## Output

Returns a list of matching VA solicitation records, each containing the solicitation title, NAICS code, PSC code, set-aside type, response deadline, posted date, and a direct link to the full opportunity on SAM.gov. Results are paginated via limit and offset parameters.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [],
   "properties": {
    "q": {
     "type": "string",
     "examples": [
      "imaging"
     ],
     "description": "Keyword in the solicitation title."
    },
    "limit": {
     "type": "integer",
     "examples": [
      25
     ],
     "description": "Max rows (default 25, cap 100)."
    },
    "naics": {
     "type": "string",
     "examples": [
      "3345"
     ],
     "description": "NAICS code prefix(es), CSV."
    },
    "since": {
     "type": "string",
     "examples": [
      "2026-07-01"
     ],
     "description": "Posted on or after this date (YYYY-MM-DD)."
    },
    "state": {
     "type": "string",
     "examples": [
      "FL"
     ],
     "description": "Place-of-performance state code(s), CSV."
    },
    "offset": {
     "type": "integer",
     "examples": [
      0
     ],
     "description": "Rows to skip, for paging."
    },
    "setaside": {
     "type": "string",
     "examples": [
      "SDVOSBC"
     ],
     "description": "Set-aside code(s), CSV: SDVOSBC, VOSB, SBA, 8A..."
    },
    "posted_after": {
     "type": "string",
     "examples": [
      "2026-07-01"
     ],
     "description": "Posted on or after this date (YYYY-MM-DD)."
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/govparse-va-opportunities-search-f30c12f6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.govparse.io](https://www.zero.xyz/host/api.govparse.io/llms.txt)
