CharityAPI Public Charity Check API

Verify whether an EIN is a tax-deductible public charity

Operations 1

GET /public_charity_check/{ein} Check public charity status #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/charityapi-public-charity-check-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

charityapi-public-charity-check-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Charity Autocomplete Public Charity Check API
  description: REST API providing access to US nonprofit and charity data sourced from IRS filings. Supports lookup of organizations by EIN, public charity (501c3) verification checks, and name-based autocomplete for donation, fundraising, and compliance workflows.
  version: '1.0'
  contact:
    name: CharityAPI Support
    url: https://www.charityapi.org/contact
  termsOfService: https://www.charityapi.org/terms
servers:
- url: https://api.charityapi.org/api
  description: CharityAPI Production
security:
- apiKeyAuth: []
tags:
- name: Public Charity Check
  description: Verify whether an EIN is a tax-deductible public charity
paths:
  /public_charity_check/{ein}:
    get:
      operationId: publicCharityCheck
      summary: Check public charity status
      description: Returns a boolean indicating whether the supplied EIN belongs to an IRS public charity, and therefore qualifies as a 501c3 with tax-deductible donation status.
      tags:
      - Public Charity Check
      parameters:
      - name: ein
        in: path
        required: true
        description: Employer Identification Number to verify.
        schema:
          type: string
          pattern: ^[0-9]{9}$
      responses:
        '200':
          description: Public charity check result
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicCharityCheck'
        '401':
          description: Missing or invalid API key
        '429':
          description: Rate limit exceeded
components:
  schemas:
    PublicCharityCheck:
      type: object
      description: Result of a 501c3 public charity verification.
      properties:
        ein:
          type: string
        public_charity:
          type: boolean
          description: True when the EIN is registered as an IRS public charity.
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: apikey
      description: API key issued by CharityAPI, sent in the apikey request header.
externalDocs:
  description: CharityAPI Documentation
  url: https://docs.charityapi.org/