CharityAPI · Schema

CharityAPI Public Charity Check

Result returned by the public_charity_check endpoint indicating whether an EIN is a 501c3.

501c3CharitiesDonationsEINIRSNon-ProfitsTax ComplianceVerification

Properties

Name Type Description
ein string
public_charity boolean
View JSON Schema on GitHub

JSON Schema

charityapi-public-charity-check-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://charityapi.org/schemas/public-charity-check.json",
  "title": "CharityAPI Public Charity Check",
  "description": "Result returned by the public_charity_check endpoint indicating whether an EIN is a 501c3.",
  "type": "object",
  "required": ["ein", "public_charity"],
  "properties": {
    "ein": {
      "type": "string",
      "pattern": "^[0-9]{9}$"
    },
    "public_charity": {
      "type": "boolean"
    }
  }
}