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
| Param | In | Values |
|---|---|---|
keyword | query | Full-text keyword filter |
status | query | Pipe/comma list of forecasted, posted, closed, archived (default posted|forecasted) |
agency | query | Agency code, e.g. HHS-OPHS |
category | query | Funding category code, e.g. HL (health) |
eligibility | query | Eligibility code filter |
aln | query | Assistance Listing (CFDA) number, e.g. 93.217 |
limit | query | 1–100 (default 20) |
offset | query | Start 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"
}