Docs / Government data
GET /v1/awards
Federal spending awards from USAspending.gov — contracts, grants, loans, and direct payments — normalized into flat JSON. Each record carries the award id, recipient, amount, awarding agency, type, dates, place of performance, description, and the usaspending.gov link. Pick one category per call. Pairs with /v1/opportunities: the solicitation on SAM, then who actually won the awards here.
Parameters
| Param | In | Values |
|---|---|---|
category | query | contracts (default), idvs, grants, loans, direct_payments, or other |
keyword | query | Full-text keyword filter |
agency | query | Awarding agency, top-tier exact name, e.g. Department of Defense |
recipient | query | Recipient name search, e.g. Lockheed |
state | query | Place-of-performance state, e.g. CA |
start, end | query | Action-date range, YYYY-MM-DD (default: last 1 year) |
limit | query | 1–100 (default 20) |
page | query | Page number (default 1) |
sort, order | query | amount/start/end; asc/desc |
Request
# DoD contracts awarded to Lockheed in the last year
curl "https://api.edgrapi.com/v1/awards?category=contracts&agency=Department%20of%20Defense&recipient=Lockheed" -H "X-API-Key: edgr_..."
Response
{
"scope": "federal spending awards (USAspending.gov)", "category": "contracts",
"count": 1, "has_next": true, "page": 1,
"time_period": { "start": "2025-09-16", "end": "2026-09-16" },
"awards": [
{ "award_id": "NNG09HR00C", "recipient": "LOCKHEED MARTIN CORP",
"amount": 2032829134.57,
"awarding_agency": "National Aeronautics and Space Administration",
"awarding_sub_agency": "National Aeronautics and Space Administration",
"award_type": null, "start_date": "2008-12-04", "end_date": "2039-04-30",
"place_of_performance_state": "CO",
"description": "GOES-R next-generation geostationary weather satellite series...",
"usaspending_url": "https://www.usaspending.gov/award/CONT_AWD_NNG09HR00C_8000_-NONE-_-NONE-" }
],
"source": "USAspending.gov award search API"
}