# GovParse Federal Opportunities Search

> GovParse Federal 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).

Searches active federal contract solicitations (SAM.gov) and grant opportunities (Grants.gov) with filters for keyword, agency, NAICS code, set-aside type, state, and date windows

## Facts

- Endpoint: GET https://api.govparse.io/v1/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-federal-opportunities-search-14b98118
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_e5J7SYdA0dxZ56cWWYylB

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-federal-opportunities-search-14b98118
```

Example prompt: Can you find open federal contracts and grants for cybersecurity services — specifically 8a and WOSB set-asides in Virginia under NAICS code 5415 — with deadlines before September 30, 2026?

## When to prefer this

Use this endpoint when you need to discover active federal procurement opportunities across both SAM.gov contracts and Grants.gov grants in a single call. It is ideal for businesses researching bid pipelines, grant writers scanning open solicitations, or agents automating opportunity monitoring. Prefer this over direct SAM.gov or Grants.gov API calls when you need unified search with set-aside filtering, NAICS prefix matching, and deadline windowing in one request.

## Known failure modes

- No results returned if filters are too restrictive or no matching opportunities exist
- Invalid NAICS code prefix returns empty results or error
- Unsupported set-aside code may return no results
- Date format errors (non-YYYY-MM-DD) may cause parameter rejection
- Pagination offset beyond result count returns empty array
- Agency name fragment too vague may return overly broad results

## How this service works

What federal contract solicitations and grant opportunities can my business bid on right now? Unified search over SAM.gov contract opportunities and Grants.gov postings: keyword, awarding agency, NAICS prefix, set-aside (SBA, 8A, WOSB, SDVOSBC...), place-of-performance state, and posted/deadline date windows. One call answers 'find open federal money that fits us'.

## Output

A paginated list of matching federal contract solicitations and/or grant opportunities, each with opportunity title, awarding agency, NAICS code, set-aside type, place of performance, posted date, and response deadline. Results are drawn from SAM.gov (contracts) and Grants.gov (grants) and reflect currently active, open opportunities.

## 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": [
      "cybersecurity"
     ],
     "description": "Keyword in the opportunity title. Example: 'cybersecurity'."
    },
    "kind": {
     "type": "string",
     "examples": [
      "contract"
     ],
     "description": "contract | grant (CSV for both; default both)."
    },
    "limit": {
     "type": "integer",
     "examples": [
      25
     ],
     "description": "Max rows (default 25, cap 100)."
    },
    "naics": {
     "type": "string",
     "examples": [
      "5415"
     ],
     "description": "NAICS code prefix(es), CSV — contracts only. Example: '5415' covers all IT services."
    },
    "state": {
     "type": "string",
     "examples": [
      "VA"
     ],
     "description": "Place-of-performance state code(s), CSV — contracts only."
    },
    "agency": {
     "type": "string",
     "examples": [
      "defense"
     ],
     "description": "Awarding department/agency name fragment. Example: 'defense'."
    },
    "offset": {
     "type": "integer",
     "examples": [
      0
     ],
     "description": "Rows to skip, for paging."
    },
    "setaside": {
     "type": "string",
     "examples": [
      "SBA"
     ],
     "description": "Set-aside code(s), CSV — contracts only: SBA, 8A, WOSB, SDVOSBC, HZC..."
    },
    "posted_after": {
     "type": "string",
     "examples": [
      "2026-07-01"
     ],
     "description": "Posted/open date on or after this date (YYYY-MM-DD)."
    },
    "deadline_after": {
     "type": "string",
     "examples": [
      "2026-07-16"
     ],
     "description": "Response/close deadline on or after this date (YYYY-MM-DD)."
    },
    "deadline_before": {
     "type": "string",
     "examples": [
      "2026-09-30"
     ],
     "description": "Response/close deadline on or before this date (YYYY-MM-DD)."
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/govparse-federal-opportunities-search-14b98118/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)
