v39

latestOpenAPI 3.0.0raw.githubusercontent.com2026-08-017897360.9 KB
verificationRequests

List verification requests

Returns a paginated list of all verification requests for the authenticated grantmaker.

get/v1/verification_requests

Query parameters

einstring

Filter by EIN. If provided, only returns verification requests matching this EIN.

page_limitinteger

Limit the size of the list that is returned. The default (and maximum) is 100 objects.

page_tokenstring

A token to use to retrieve the next page of results.

Response

The response for VerificationRequests.list

next_page_tokenstring

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 changing the page_token). 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": "vr_01jpjen1s23s29kkmnjsb6fzga",
      "ein": "123456789",
      "organization_name": "Local Community Foundation",
      "organization_id": "org_01jpjenf5q6cawy43yxfcrxhct",
      "status": "needs_review",
      "website": "https://localfoundation.org",
      "recommended_mailing_address": {
        "line1": "123 Main St",
        "line2": "Suite 100",
        "city": "San Francisco",
        "state": "CA",
        "zip_code": "94105"
      },
      "created_at": "2020-01-31T23:00:00Z",
      "updated_at": "2020-01-31T23:00:00Z"
    }
  ]
}