Government Spending
US federal contracts, grants & budgets
Search US federal spending — contracts, grants, and loans across all agencies. Find who received funding, how much, and where. Track spending trends by state, agency, or time period.
Search federal contracts, grants, and loans by keyword, agency, recipient, state, or date range. Returns award details including amounts, recipients, agencies, and descriptions.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "government-spending",
"skill": "search_awards",
"input": {
"keywords": [
"cybersecurity"
],
"award_type": "contracts"
}
}' \
https://api.toolrouter.com/v1/tools/callList all US federal agencies with their budget authority, obligated amounts, and outlays. Useful for identifying the biggest spenders and comparing agency budgets.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "government-spending",
"skill": "list_agencies",
"input": {}
}' \
https://api.toolrouter.com/v1/tools/callBreak down federal spending by state, county, or congressional district. Shows total amounts, population, and per-capita spending for each region.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "government-spending",
"skill": "spending_by_geography",
"input": {
"award_type": "contracts",
"geo_level": "state"
}
}' \
https://api.toolrouter.com/v1/tools/callTrack federal spending trends over time by month, quarter, or fiscal year. Shows how spending changes across periods for any award type.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "government-spending",
"skill": "spending_over_time",
"input": {
"award_type": "contracts",
"group_by": "month"
}
}' \
https://api.toolrouter.com/v1/tools/callQuick Start
claude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"government-spending","skill":"search_awards","input":{}}' \
https://api.toolrouter.com/v1/tools/callFrequently Asked Questions
What kinds of federal spending can I search?
The tool covers US federal contracts, grants, and loans. You can search across all award types or narrow the query to just one category depending on the question you are answering.
How do I find awards for a specific agency, recipient, or state?
Use `search_awards` with agency names, recipient names, keywords, dates, and optional state filters. It is the best starting point when you already know what spending pattern you want to inspect.
Can it show where money is going and how it changes over time?
Yes. `spending_by_geography` breaks spending down by state, county, or district, while `spending_over_time` shows monthly, quarterly, or fiscal-year trends.
What happens if I do not pass a date range?
The tool defaults to the current federal fiscal year. That keeps exploratory queries useful without forcing you to enter dates for every lookup.