# IRS Tax-Exempt Status Lookup by EIN

> IRS Tax-Exempt Status Lookup by EIN is a paid API for AI agents from api.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 deductibility eligibility, and revocation/reinstatement history.

## Facts

- Endpoint: GET https://api.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-tax-exempt-status-lookup-by-ein-bbad5dd8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZToccYQT0MX3SIYbXdLrn

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-tax-exempt-status-lookup-by-ein-bbad5dd8
```

Example prompt: Can you check whether the nonprofit with EIN 13-1837418 is currently IRS tax-exempt, whether donations to it are deductible, and if it's ever had its status revoked?

## When to prefer this

Use this endpoint when you need authoritative, current IRS data on a specific US nonprofit's tax-exempt status and donation deductibility. Ideal for due diligence before charitable giving, grant processing, compliance checks, or verifying nonprofit legitimacy. Prefer over general web searches when you need structured, machine-readable IRS data including revocation history and Publication 78 eligibility codes.

## Known failure modes

- EIN not found in IRS records — organization may not exist or may not be registered as tax-exempt
- Invalid EIN format (must be 9 digits) — returns validation error
- Organization exists but has no Publication 78 listing — deductibility fields will be absent
- Network or upstream IRS data source unavailability — returns service error
- EIN belongs to a for-profit entity rather than a nonprofit — status will reflect non-exempt

## 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 whether the nonprofit is currently tax-exempt, its 501(c) subsection, whether it appears in IRS Publication 78 with deductibility eligibility code, and whether its status was automatically revoked along with revocation and reinstatement dates if applicable.

## 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-tax-exempt-status-lookup-by-ein-bbad5dd8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentstools.dev](https://www.zero.xyz/host/api.agentstools.dev/llms.txt)
