v39

latestOpenAPI 3.0.0raw.githubusercontent.com2026-08-017897360.9 KB
Grant Requests

List Grant Requests

Returns a list of Grant Requests accessible to the authenticated DAF account.

Use donor_account_id to retrieve all Grant Requests associated with a specific donor.

get/v1/grant_requests

Query parameters

donor_account_idstring

Filter Grant Requests by the ID of the associated Donor Account.

page_limitinteger

The number of results to return. Defaults to 10, max is 100.

page_tokenstring

A token to retrieve the next page of results.

Response

OK

next_page_tokenstring

A token to retrieve the next page of results. Absent when there are no more results.

Example response

{
  "results": [
    {
      "id": "grant_req_01jpjenf5q6cawy43yxfcrxhct",
      "donor_account_id": "donor_account_01jpjenf5q6cawy43yxfcrxhct",
      "giving_pool_id": "0bf40881-8ee2-47fb-98ca-f58c7999aa34",
      "ein": "12-3456789",
      "nonprofit_name": "American Red Cross",
      "amount_cents": 10000,
      "form_url": "https://example.org/donate",
      "created_at": "2026-04-01T09:00:00Z",
      "updated_at": "2026-04-01T12:00:00Z"
    }
  ]
}