USAspending.gov

The firehose of US federal spending, straight as JSON

🏛 GovernmentUNMONITOREDchecked 14 min ago
AUTH NONECORS AGENT ?HTTPS COMMERCIAL

USAspending is the official source for how the US government spends money, and its v2 REST API serves agencies, awards, and budget figures without a key. This toptier-agencies call is a simple GET, though many deeper queries expect POST bodies. The data is US federal public-domain.

HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: — · unmonitored
Uptime history
—%90 days
—%30 days
P50 · ms
P95 · ms
operationalpartialdownno data
Live response samplecaptured by our last successful check
GET https://api.usaspending.gov/api/v2/references/toptier_agencies/

{
  "results": [
    {
      "agency_id": 1525,
      "toptier_code": "247",
      "abbreviation": "AAHC",
      "agency_name": "400 Years of African-American History Commission",
      "active_fy": "2026",
      "agency_slug": "400-years-of-african-american-history-commission"
    }
  ]
}
Call itcurl · fetch · python
curl "https://api.usaspending.gov/api/v2/references/toptier_agencies/"
const res = await fetch("https://api.usaspending.gov/api/v2/references/toptier_agencies/");
const data = await res.json();
console.log(data);
import requests

res = requests.get("https://api.usaspending.gov/api/v2/references/toptier_agencies/")
print(res.json())

BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET

Endpoints · 6On scheduleFULL DOCS ↗
First rollup pending — GET /references/toptier_agencies/ has been probed
GET/references/toptier_agencies/PROBED

The firehose of US federal spending, straight as JSON

GET/references

References — documented GET route.

GET/references/1

References details by ID (example: 1).

GET/references?limit=10

References — documented GET route.

GET/references/search?q=test

Search by query parameters.

GET/docs/

Docs — documented GET route.

Machine-readable spec

We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.

Response-shape history

Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.

USAspending.gov: common questions

Is USAspending.gov free to use?

Yes — USAspending.gov is a free government API. Free tier: Free — no key required. Commercial use is allowed on the free tier.

Does USAspending.gov need an API key?

No — USAspending.gov needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).

Can I call USAspending.gov from the browser?

Not directly — USAspending.gov doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.

Is USAspending.gov up right now?

As of our last scheduled check, USAspending.gov is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.