# IRS Nonprofit Tax-Exempt Status Lookup

> IRS Nonprofit Tax-Exempt Status Lookup is a paid API for AI agents from payai.agentstools.dev, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-15).

Returns authoritative IRS tax-exempt status for a US nonprofit by EIN, including 501(c) subsection, Publication 78 eligibility, revocation/reinstatement dates, and deductibility codes.

## Facts

- Endpoint: GET https://payai.agentstools.dev/nonprofit/status
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/irs-nonprofit-tax-exempt-status-lookup-ef8b1953
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YG1Gku6sEiEjgyEHTfDtu

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability irs-nonprofit-tax-exempt-status-lookup-ef8b1953
```

Example prompt: Can you check whether EIN 13-1837418 is currently IRS tax-exempt, what its 501(c) subsection is, and whether it's listed in Publication 78 as eligible to receive deductible contributions?

## When to prefer this

Use this endpoint when you need authoritative, IRS-sourced verification of a US nonprofit's tax-exempt status by EIN — especially for donor due diligence, grant compliance, payroll platform onboarding, or any workflow requiring confirmation of 501(c) classification, Publication 78 listing, or revocation history. Prefer this over general web searches or third-party charity databases when regulatory accuracy and official IRS data are required.

## Known failure modes

- EIN not found in IRS database — organization may not exist or may never have been tax-exempt
- Invalid EIN format — must be exactly 9 digits
- Organization was revoked and not reinstated — status returned as not currently exempt
- Network timeout or IRS data source unavailability
- Rate limit or payment failure for the x402 micropayment

## How this service works

Crisp authoritative IRS tax-exempt status for a US nonprofit by EIN: whether it is currently tax-exempt, listed in Publication 78 as able to receive deductible contributions with the eligibility code, whether its status was automatically revoked with the revocation and reinstatement dates, and its 501(c) subsection.

## Output

Returns a structured record indicating whether the organization is currently tax-exempt, its 501(c) subsection code, whether it appears in IRS Publication 78 (and the associated deductibility eligibility code), and if applicable, the dates of any automatic revocation and subsequent reinstatement.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "ein"
     ],
     "properties": {
      "ein": {
       "type": "string",
       "description": "9-digit IRS Employer Identification Number"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/irs-nonprofit-tax-exempt-status-lookup-ef8b1953/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payai.agentstools.dev](https://www.zero.xyz/host/payai.agentstools.dev/llms.txt)
