# US Nonprofit Due-Diligence Profile (api.agentstools.dev)

> US Nonprofit Due-Diligence Profile (api.agentstools.dev) is a paid API for AI agents from api.agentstools.dev, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Returns a composite due-diligence profile for a US 501(c) nonprofit by EIN or name, including IRS status, Form 990 financials, multi-year trends, and health/risk indicators.

## Facts

- Endpoint: GET https://api.agentstools.dev/nonprofit/profile
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/us-nonprofit-due-diligence-profile-api-agentstools-dev-3dd121d0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cC19pZknDBWwFSzPGGcwx

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 us-nonprofit-due-diligence-profile-api-agentstools-dev-3dd121d0
```

Example prompt: Pull the full IRS due-diligence profile for the American Red Cross — I need their EIN, current exempt status, Pub 78 deductibility, whether they've ever been auto-revoked, and their latest Form 990 financials with multi-year trend.

## When to prefer this

Use this endpoint when you need a single consolidated view of a US nonprofit's IRS compliance status, financial health, and identity — especially for donor due diligence, grant-making research, or regulatory compliance checks. Prefer it over manual IRS TEOS lookups when you need fused multi-source data (Pub 78 + auto-revocation + 990 financials) in one call. Best when you have the EIN for precision; name+state works for discovery.

## Known failure modes

- EIN not found in IRS records — returns 404 or empty result
- Ambiguous name match when state not provided — may return wrong org or require disambiguation
- Organization has no Form 990 on file (e.g. churches, very small orgs) — financials section absent
- Rate limiting or payment failure via x402 protocol — 402 Payment Required
- Invalid EIN format — 400 Bad Request
- Network timeout on upstream IRS data source — 503 or timeout error

## How this service works

Composite due-diligence profile of a US 501(c) nonprofit by EIN or name: identity (name, EIN, decoded NTEE, subsection, foundation type, ruling date), current IRS status fusion (Pub 78 deductibility, auto-revocation, exempt status), latest Form 990 financials, multi-year trend, cited filings, and a deterministic health and risk indicator set.

## Output

A structured JSON object containing: nonprofit identity fields (name, EIN, decoded NTEE category, subsection code, foundation type, ruling date), fused IRS status (Pub 78 deductibility, auto-revocation check, exempt status), latest Form 990 financials, multi-year financial trend data, references to cited filings, and a deterministic set of health and risk indicators.

## 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",
     "properties": {
      "ein": {
       "type": "string",
       "description": "9-digit IRS Employer Identification Number"
      },
      "name": {
       "type": "string",
       "description": "Organization name (used when ein is absent)"
      },
      "state": {
       "type": "string",
       "examples": [
        "NY",
        "CA",
        "DC"
       ],
       "description": "Optional 2-letter US state to disambiguate a name"
      }
     }
    }
   },
   "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/us-nonprofit-due-diligence-profile-api-agentstools-dev-3dd121d0/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)
