The latest large NEW federal awards across all recipients, from USAspending
The latest large NEW federal awards across all recipients, from USAspending.gov — browse what the government is funding right now. Tune `?days=` lookback (max 365), `?award_type=contracts|grants|all`, `?min_amount=` floor, `?order=amount|date`, `?limit=` (max 50). Each award carries recipient, amount, awarding agency, dates, description, and a link. Uses new-award dating, not modifications.
20000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-14
updated
Provider
x402stock.xyz · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x3070Fbb3803819fB5BdfE9286fdc6325A877fA85",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"award_type": "contracts",
"days": 90,
"limit": 20,
"min_amount": 100000000,
"order": "amount"
},
"type": "http"
},
"output": {
"example": {
"as_of": "2026-06-05T12:00:00.000Z",
"attribution": "Source: USAspending.gov (U.S. Department of the Treasury, Bureau of the Fiscal Service)",
"award_type": "contracts",
"awards": [
{
"amount": 2594040000,
"award_id": "70Z02326DBORDR001",
"awarding_agency": "Department of Homeland Security",
"awarding_sub_agency": "U.S. Customs and Border Protection",
"description": "BORDER WALL CONSTRUCTION",
"end_date": "2030-06-02",
"recipient": "FISHER SAND & GRAVEL CO",
"start_date": "2026-06-03",
"url": "https://www.usaspending.gov/award/CONT_AWD_70Z02326DBORDR001_7012_-NONE-_-NONE-"
}
],
"count": 1,
"min_amount": 100000000,
"since": "2026-03-07",
"source": "usaspending",
"window_days": 90
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"award_type": {
"default": "contracts",
"enum": [
"contracts",
"grants",
"all"
],
"type": "string"
},
"days": {
"default": 90,
"exclusiveMinimum": 0,
"maximum": 365,
"type": "integer"
},
"limit": {
"default": 20,
"exclusiveMinimum": 0,
"maximum": 50,
"type": "integer"
},
"min_amount": {
"minimum": 0,
"type": "number"
},
"order": {
"default": "amount",
"enum": [
"amount",
"date"
],
"type": "string"
}
},
"required": [
"award_type",
"days",
"limit",
"order"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"as_of": {
"type": "string"
},
"attribution": {
"type": "string"
},
"award_type": {
"type": "string"
},
"awards": {
"items": {
"additionalProperties": false,
"properties": {
"amount": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"award_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"awarding_agency": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"awarding_sub_agency": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"end_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"recipient": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"start_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
}
},
"required": [
"award_id",
"recipient",
"amount",
"awarding_agency",
"awarding_sub_agency",
"start_date",
"end_date",
"description",
"url"
],
"type": "object"
},
"type": "array"
},
"count": {
"type": "number"
},
"min_amount": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"since": {
"type": "string"
},
"source": {
"const": "usaspending",
"type": "string"
},
"window_days": {
"type": "number"
}
},
"required": [
"source",
"as_of",
"award_type",
"window_days",
"since",
"min_amount",
"count",
"awards",
"attribution"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://x402stock.xyz/api/v1/gov-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://x402stock.xyz/api/v1/gov-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://x402stock.xyz/api/v1/gov-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/5291.json, and this resource appears in /discovery/resources and /discovery/search.