Which verified veteran-owned businesses can I target or team with? Search SDVOSB / VOSB fi
Which verified veteran-owned businesses can I target or team with? Search SDVOSB / VOSB firms (from federal award records carrying the veteran-owned certification flag) by state, name, certification, NAICS, UEI, minimum dollars won FROM the VA, or most-recent award date (since). Returns the vendor, award footprint, VA-won total, and resolved entities-graph id — a seller target list AND a set-aside teaming signal. Public USAspending records; not a certification-status determination.
1250000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-06
updated
Provider
api.govparse.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x3873d15CF3209c32aaA8d9AA542164E658567129",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "1250000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "BdcZbENFdEyEUMqv9pnRMUnn1Yyeyo2dCMbYXbJ3LmaB",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "1250000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"certification": "sdvosb",
"name": "integrated",
"state": "VA"
},
"type": "http"
},
"output": {
"example": {
"rows": [
{
"award_count": 42,
"certification": "sdvosb",
"entity_id": null,
"first_award_date": "2022-03-14",
"last_award_date": "2026-05-01",
"naics_codes": "541519,541611",
"recipient_id": "d46ad2a7-ed19-9535-4f24-787705845610-C",
"recipient_name": "V3GATE, LLC",
"recipient_uei": null,
"state": "CO",
"total_award_amount": 612345678,
"va_award_amount": 576889048.72,
"va_award_count": 30
}
],
"total_matched": 1
},
"type": "json"
}
},
"routeTemplate": "/v1/va/vendors/search",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"certification": {
"description": "sdvosb | vosb (CSV for both).",
"examples": [
"sdvosb"
],
"type": "string"
},
"limit": {
"description": "Max rows (default 25, cap 100).",
"examples": [
25
],
"type": "integer"
},
"min_va_award": {
"description": "Minimum total $ this vendor has won FROM the VA.",
"examples": [
"100000"
],
"type": "string"
},
"naics": {
"description": "NAICS code prefix(es), CSV — matches any of the vendor's award NAICS.",
"examples": [
"541"
],
"type": "string"
},
"name": {
"description": "Vendor name fragment.",
"examples": [
"integrated"
],
"type": "string"
},
"offset": {
"description": "Rows to skip, for paging.",
"examples": [
0
],
"type": "integer"
},
"since": {
"description": "Most recent award on or after this date (YYYY-MM-DD).",
"examples": [
"2025-01-01"
],
"type": "string"
},
"state": {
"description": "Vendor state code(s), CSV.",
"examples": [
"VA"
],
"type": "string"
},
"uei": {
"description": "Recipient Unique Entity Identifier (SAM UEI).",
"examples": [
"ZQGD2XIX75A5"
],
"type": "string"
}
},
"required": [],
"type": "object"
}
},
"type": "object"
}
}
}Use it
curl
curl "https://api.govparse.io/v1/va/vendors/search" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.govparse.io/v1/va/vendors/search");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.govparse.io/v1/va/vendors/search")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/14594.json, and this resource appears in /discovery/resources and /discovery/search.