# GovParse SDVOSB/VOSB Veteran-Owned Vendor Feed

> GovParse SDVOSB/VOSB Veteran-Owned Vendor Feed is a paid API for AI agents from api.govparse.io, paid per call via x402, $25/call, status unknown (last checked 2026-09-15).

Returns a cursor-paginated bulk feed of verified veteran-owned (SDVOSB/VOSB) vendors sorted by most recent federal award date, with VA-specific and total federal award totals, filterable by state, NAICS, certification, and award thresholds.

## Facts

- Endpoint: GET https://api.govparse.io/v1/feeds/sdvosb
- Price: $25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/govparse-sdvosb-vosb-veteran-owned-vendor-feed-7f861823
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_n__u5emkg31nzaYP1UucL

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-sdvosb-vosb-veteran-owned-vendor-feed-7f861823
```

Example prompt: Pull up to 500 SDVOSB vendors from Tennessee that have won at least $100,000 from the VA and had their most recent federal award on or after January 1, 2026 — I want to find teaming targets for an upcoming set-aside opportunity.

## When to prefer this

Choose this endpoint when you need bulk discovery of veteran-owned vendors with recent federal award traction, especially when filtering by geography, industry (NAICS), or certification type (SDVOSB vs VOSB). Prefer it over general USAspending award searches when the goal is specifically identifying set-aside-eligible teaming partners or building prospect lists of veteran-owned businesses with demonstrated VA or federal revenue. Best for BD analysts, capture managers, and agents automating competitive landscape research around veteran set-aside opportunities.

## Known failure modes

- Invalid or unsupported state code returns empty result set or 400 error
- NAICS prefix with no matching vendors returns empty rows
- Invalid cursor token causes pagination error or 400 response
- since date in wrong format (not YYYY-MM-DD) returns validation error
- min_va_award set extremely high may return zero rows
- Exceeding limit cap of 1000 may return validation error or be silently capped
- Payment failure (x402) blocks access entirely

## How this service works

Which veteran-owned (SDVOSB / VOSB) vendors just showed fresh federal traction? Bulk feed over the verified veteran-owned vendor roster, newest-first by most recent award date: vendor, state, NAICS, certification, and its VA-specific + total federal award totals (banded). A set-aside-eligible vendor with recent traction is a teaming / growth target. Flat rows, cursor-paginated up to 1000/page, filterable by state, NAICS, certification, VA award, or since. Observational public records as filed.

## Output

A paginated flat-row list of veteran-owned vendors (SDVOSB/VOSB), each including vendor name, state, NAICS code, certification type, banded VA award total, banded total federal award total, and most recent award date. Response includes a next_cursor token for fetching subsequent pages. Rows are ordered newest-first by most recent award date.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [],
   "properties": {
    "limit": {
     "type": "integer",
     "examples": [
      500
     ],
     "description": "Rows per page (default 500, cap 1000)."
    },
    "naics": {
     "type": "string",
     "examples": [
      "3339"
     ],
     "description": "NAICS code prefix(es), CSV — matches the vendor's award NAICS."
    },
    "since": {
     "type": "string",
     "examples": [
      "2026-01-01"
     ],
     "description": "Only vendors whose most recent award is on or after this date (YYYY-MM-DD)."
    },
    "state": {
     "type": "string",
     "examples": [
      "TN"
     ],
     "description": "Vendor state code(s), CSV."
    },
    "cursor": {
     "type": "string",
     "examples": [
      "eyJkIjoiMjAyNi0wNy0wMSIsImsiOiIyYzRiNmZiOSJ9"
     ],
     "description": "Opaque page cursor — pass the previous page's next_cursor unchanged."
    },
    "min_va_award": {
     "type": "integer",
     "examples": [
      100000
     ],
     "description": "Minimum total $ this vendor has won from the VA."
    },
    "certification": {
     "type": "string",
     "examples": [
      "sdvosb"
     ],
     "description": "sdvosb | vosb."
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/govparse-sdvosb-vosb-veteran-owned-vendor-feed-7f861823/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)
