Government Contract Awards
US federal contract award intelligence from USASpending
Government procurement dataset built from USASpending.gov award feeds. Search by agency and value, inspect single-award details, and analyze top vendors by obligated spend for market intelligence, policy analysis, and sales targeting.
Use cases
- ✓ Federal procurement market sizing
- ✓ Agency-specific vendor intelligence
- ✓ Competitive analysis and bid strategy
- ✓ Spend concentration monitoring
- ✓ Historical contract trend analytics
Sample data
Example responses from the API. Each query returns structured JSON.
GET /api/v1/contracts?agency=DOD&limit=1
{
"contract_id": "CONT_AWD_W56HZV-24-C-0078",
"agency": "Department of Defense",
"vendor": "Raytheon Technologies Corp",
"amount": 48250000.00,
"award_date": "2024-08-12",
"naics_code": "336414",
"description": "Guided Missile and Space Vehicle Manufacturing"
} GET /api/v1/contracts/CONT_AWD_W56HZV-24-C-0078
{
"contract_id": "CONT_AWD_W56HZV-24-C-0078",
"agency": "Department of Defense",
"vendor": "Raytheon Technologies Corp",
"amount": 48250000.00,
"period_start": "2024-08-12",
"period_end": "2027-08-11",
"contract_type": "firm-fixed-price",
"place_of_performance": "Tucson, AZ"
} GET /api/v1/contracts/stats
{
"total_awards": 67234891,
"total_value_usd": 8912345678901,
"unique_vendors": 412893,
"last_updated": "2025-12-01",
"agencies": 98
} Response fields
| Field | Type | Description |
|---|---|---|
| award_id | string | Unique award identifier |
| piid | string | Procurement instrument identifier |
| agency_name | string | Awarding agency name |
| agency_code | string | Awarding agency code |
| vendor_name | string | Recipient/vendor name |
| award_amount | number | Award amount in USD |
| start_date | string | Award start date |
| end_date | string | Award end date |
| naics_code | string | Industry NAICS code |
| product_or_service_code | string | PSC category code |
Example queries
Search large DOD awards
GET /api/v1/contracts?agency=DOD&min_amount=1000000 Returns contract awards by agency and minimum amount
Single award lookup
GET /api/v1/contracts/{award_id} Returns full details for one contract award
Top vendors by spend
GET /api/v1/contracts/top-vendors?agency=DOD&limit=20 Aggregates highest-spend vendors for an agency
Bulk export
GET /api/v1/contracts/export Returns downloadable Parquet links