v39

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

Search organizations

Search for organizations by name or EIN. This endpoint exists to support a typeahead search or quick lookup by nonprofit EIN or name. The Get Organization API should be used to retrieve detailed information about an organization.

get/v1/organizations/search

Query parameters

qstring required

The query string to search for. If this is in the format of an EIN, the search will be limited exclusively to the organization with that EIN. Otherwise, this will be a fuzzy search on organization name.

einstring

The Employer Identification Number (EIN) or TaxID for the nonprofit entity. This is deprecated in favor of the q parameter.

namestring

The name of the organization. This is deprecated in favor of the q parameter.

limitinteger

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

Response

The response for Organizations.search

Example response

{
  "results": [
    {
      "id": "org_01jpjenf5q6cawy43yxfcrxhct",
      "ein": "123456789",
      "name": "American Red Cross",
      "daf_eligible": true,
      "city": "New York",
      "state": "NY"
    }
  ]
}
All 78 operations