USAspending Awards Scraper
Pricing
from $10.00 / 1,000 results
Go to Apify Store
USAspending Awards Scraper
An pulls structured U.S. federal spending records (contracts, grants, loans, and IDVs) from the USAspending API, filtering by agency, date range, recipient, location, or industry codes. It returns paginated award records with financial details and links to each award page.
Pricing
from $10.00 / 1,000 results
Rating
0.0
(0)
Developer
Jamshaid Arif
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
a day ago
Last modified
Categories
Share
An Apify actor that scrapes individual U.S. federal award records — contracts, grants, loans, direct payments, IDVs — from the official USAspending.gov API.
Input
| Field | Type | Description |
|---|---|---|
awardCategory | string | contracts (A,B,C,D), assistance (grants/loans/direct/other), or idvs. Sets default award type codes. |
awardTypeCodes | array | Explicit award_type_codes override. Empty = category default. |
startDate / endDate | string | Action-date window YYYY-MM-DD (required by the API). Defaults to FY2025. |
awardingAgency | string | Toptier agency name, e.g. "Department of Defense". |
recipientSearchText | string | Recipient name search, e.g. "Lockheed". |
keywords | string | Full-text keyword. |
placeOfPerformanceState | string | 2-letter state code. |
naicsCode / pscCode | string | Industry / product-service code (contracts). |
fields | array | Columns to request; empty = default set. Invalid names cause an API error. |
maxRecords | integer | Stop after this many (paginated 100/request). |
impersonate | string | curl_cffi fingerprint. |
proxyConfiguration | object | Optional. |
Example input
{"awardCategory": "contracts","awardingAgency": "Department of Defense","startDate": "2024-10-01","endDate": "2025-09-30","maxRecords": 100}
Output
One item per award (the requested fields plus a url to the USAspending
award page):
{"internal_id": 12345678,"Award ID": "...","Recipient Name": "...","Awarding Agency": "Department of Defense","Awarding Sub Agency": "Department of the Navy","Award Amount": 12345678.0,"Start Date": "2025-01-01","End Date": "2026-12-31","Award Type": "DEFINITIVE CONTRACT","generated_internal_id": "CONT_AWD_...","url": "https://www.usaspending.gov/award/CONT_AWD_..."}
- Results are sorted by
Award Amountdesc; pagination followspage_metadata.hasNext, bounded bymaxRecords.