Which companies just won federal money? Bulk feed over USAspending prime awards (contracts
Which companies just won federal money? Bulk feed over USAspending prime awards (contracts + assistance), newest-first by action date — a funded-growth signal for the awardee. Flat rows, cursor-paginated up to 1000/page, filterable by NAICS, awarding agency, minimum amount, award kind, or since. Each row carries the awardee, agency, award amount (with a banded size bucket), NAICS, dates, and UEI. Observational public records as filed.
25000000 (raw units)
price
2
calls / 30d
1
unique payers
2026-09-10
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": "25000000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "BdcZbENFdEyEUMqv9pnRMUnn1Yyeyo2dCMbYXbJ3LmaB",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "25000000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"agency": "defense",
"naics": "5415",
"since": "2026-06-01"
},
"type": "http"
},
"output": {
"example": {
"basis": "USAspending federal prime awards, one row per award newest-first by action_date. award_amount_band is a coarse size bucket, never a precise claim. Observational public records as filed.",
"feed": "contract-awards",
"page": {
"has_more": true,
"limit": 500,
"next_cursor": "eyJkIjoiMjAyNi0wNi0wMyIsImsiOiJvc2hhOjMxOTAwMTIzNCJ9",
"returned": 500
},
"query": {
"agency": "all",
"kind": "all",
"min_amount": "any",
"naics": "all",
"since": "2026-06-01"
},
"rows": [
{
"action_date": "2026-06-14",
"as_published_date": "2026-07-18",
"award_amount": 24500000,
"award_amount_band": "$5M–$25M",
"award_number": "N0001926C0001",
"award_type": "contract",
"awardee": "EXAMPLE AEROSPACE CORP",
"awarding_agency": "Department of Defense",
"awarding_sub_agency": "Department of the Navy",
"cfda_number": null,
"description": "AIRCRAFT COMPONENT SUSTAINMENT",
"end_date": "2028-06-13",
"event_date": "2026-06-14",
"event_key": "award:CONT_AWD_EXAMPLE_9700",
"naics": "336411",
"naics_desc": "Aircraft Manufacturing",
"psc_code": "1560",
"psc_desc": "AIRFRAME STRUCTURAL COMPONENTS",
"recipient_uei": "ZQGD2XIX75A5",
"type_desc": "DEFINITIVE CONTRACT"
}
]
},
"type": "json"
}
},
"routeTemplate": "/v1/feeds/contract-awards",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"agency": {
"description": "Awarding agency or sub-agency name fragment.",
"examples": [
"defense"
],
"type": "string"
},
"cursor": {
"description": "Opaque page cursor — pass the previous page's next_cursor unchanged.",
"examples": [
"eyJkIjoiMjAyNi0wNi0zMCIsImsiOiJDT05UXzEyMyJ9"
],
"type": "string"
},
"kind": {
"description": "contract | assistance (grants, loans, direct payments). CSV for both; default both.",
"examples": [
"contract"
],
"type": "string"
},
"limit": {
"description": "Rows per page (default 500, cap 1000).",
"examples": [
500
],
"type": "integer"
},
"min_amount": {
"description": "Minimum award amount in USD.",
"examples": [
1000000
],
"type": "integer"
},
"naics": {
"description": "NAICS code prefix(es), CSV. Example: '5415' covers IT services.",
"examples": [
"5415"
],
"type": "string"
},
"since": {
"description": "Only awards with an action date on or after this date (YYYY-MM-DD).",
"examples": [
"2026-06-01"
],
"type": "string"
}
},
"required": [],
"type": "object"
}
},
"type": "object"
}
}
}Use it
curl
curl "https://api.govparse.io/v1/feeds/contract-awards" # -> 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/feeds/contract-awards");
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/feeds/contract-awards")
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/14570.json, and this resource appears in /discovery/resources and /discovery/search.