v39

latestOpenAPI 3.0.0raw.githubusercontent.com2026-08-017897360.9 KB
Donor Advised Funds

List Donor Advised Funds

Returns a list of all Donor Advised Funds within Chariot's system. This API allows for paginating over many results.

<Note> If there are DAFs missing from the list, please contact support at support@givechariot.com. </Note>
get/v1/dafs

Query parameters

supportedOnlyboolean

If set to true, filters DAFs to only those that have a direct integration with Chariot.

querystring

If included, filters DAFs to only those that contain the query. This parameter is case insensitive.

pageLimitinteger

the number of results to return; defaults to 10, max is 100

pageTokenstring

A token to use to retrieve the next page of results. This is useful for paginating over many pages of results. If set, all other arguments are expected to be kept the same as previous calls.

Response

The response for Dafs.list

nextPageTokenstring

A cursor token to use to retrieve the next page of results by making another API call to the same endpoint with the same parameters (only substituting the pageToken with this value). If specified, then more results exist on the server that were not returned, otherwise no more results exist on the server.

Example response

{
  "results": [
    {
      "id": "0bf40881-8ee2-47fb-98ca-f58c7999aa34",
      "orgName": "website",
      "address": "123 Main St.",
      "address2": "Apt 100",
      "city": "New York City",
      "state": "New York",
      "zip": "12345",
      "minimumGrantAmount": 5000
    }
  ]
}