# Nonprofit Form 990 Financials by EIN

> Nonprofit Form 990 Financials by EIN is a paid API for AI agents from payai.agentstools.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns normalized multi-period Form 990 financial data for a US nonprofit by EIN, including revenue, expenses, assets, liabilities, officer compensation, computed ratios, and gap flags across tax years.

## Facts

- Endpoint: GET https://payai.agentstools.dev/nonprofit/financials
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nonprofit-form-990-financials-by-ein-3dd2cfaa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0svtZLy_MvsxWCkqcW3Ao

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 nonprofit-form-990-financials-by-ein-3dd2cfaa
```

Example prompt: Can you pull the multi-year Form 990 financials for the American Red Cross — their EIN is 53-0196605 — and show me revenue, program expenses, overhead ratio, and officer compensation across all available tax years?

## When to prefer this

Choose this endpoint when you need structured, normalized, multi-year financial data for a specific US nonprofit and have its EIN. It is superior to manually parsing IRS PDFs or scraping ProPublica Nonprofit Explorer because it returns computed ratios and gap flags alongside raw figures, all citation-linked to individual filings. Best for due diligence, grant evaluation, charity watchdog analysis, or financial trend research on 990-filing organizations.

## Known failure modes

- Invalid or malformed EIN returns a validation error
- EIN not found in the database returns empty or not-found response
- Nonprofit has not filed Form 990 (e.g. very small orgs, churches) — no data available
- Gaps in multi-year data flagged via gap flags in the response
- Rate limiting or payment failure returns 402 or 429 error

## How this service works

Normalized multi-period Form 990 financials for a US nonprofit by EIN: revenue, expenses, contributions, program revenue, assets, liabilities, net assets and officer compensation per tax year, plus computed ratios (program support, overhead, officer-compensation share, net margin) and gap flags, each number cited to its filing.

## Output

A structured multi-period dataset containing per-tax-year figures for total revenue, expenses, contributions, program revenue, total assets, total liabilities, net assets, and officer compensation — each number cited to its specific Form 990 filing — plus computed ratios (program support ratio, overhead ratio, officer compensation share, net margin) and flags indicating any data gaps.

## 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/nonprofit-form-990-financials-by-ein-3dd2cfaa/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)
