Docs / Government data

GET /v1/grants

Federal grant funding opportunities from Grants.gov, normalized into flat JSON. Each record carries the opportunity id and number, title, agency, status, the open and close dates, the Assistance Listing (CFDA) numbers, and the grants.gov link. Defaults to open opportunities. Completes the gov-funding trio with contracts and awards.

Parameters

ParamInValues
keywordqueryFull-text keyword filter
statusqueryPipe/comma list of forecasted, posted, closed, archived (default posted|forecasted)
agencyqueryAgency code, e.g. HHS-OPHS
categoryqueryFunding category code, e.g. HL (health)
eligibilityqueryEligibility code filter
alnqueryAssistance Listing (CFDA) number, e.g. 93.217
limitquery1–100 (default 20)
offsetqueryStart record number (default 0)

Request

# open grants mentioning "climate"
curl "https://api.edgrapi.com/v1/grants?keyword=climate&status=posted" -H "X-API-Key: edgr_..."

Response

{
  "scope": "federal grant opportunities (Grants.gov)", "count": 1,
  "total": 1551, "offset": 0, "status": "posted|forecasted",
  "grants": [
    { "id": "361754", "number": "PA-FPH-27-001",
      "title": "Title X Family Planning Services Grants",
      "agency": "Office of the Assistant Secretary for Health", "agency_code": "HHS-OPHS",
      "status": "posted", "doc_type": "synopsis",
      "open_date": "2026-04-03", "close_date": "2027-01-11", "cfda": [ "93.217" ],
      "grants_gov_url": "https://www.grants.gov/search-results-detail/361754" }
  ],
  "source": "Grants.gov Search2 API"
}

US government data from the public Grants.gov Search2 API. total is the full match count for the query. No matches returns count: 0 and is free. Cost: 2 credits.