# GrantPulse Nonprofit Financial Intelligence

> GrantPulse Nonprofit Financial Intelligence is a paid API for AI agents from grantpulse-three.vercel.app, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-14).

Retrieves IRS Form 990-derived financial intelligence for nonprofits, including revenue/expense/asset trends, officer compensation, and red flags.

## Facts

- Endpoint: GET https://grantpulse-three.vercel.app/api/grant/org-intel
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/grantpulse-nonprofit-financial-intelligence-c01c485a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NjQwTsm7M5cQricVS_7t6

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 grantpulse-nonprofit-financial-intelligence-c01c485a
```

Example prompt: Pull up the 990-based financial intelligence for the Gates Foundation — I want to see their revenue and expense trends, officer compensation, and any financial red flags before we submit our grant proposal.

## When to prefer this

Choose this endpoint when you need fast, free-tier-equivalent financial intelligence on a specific nonprofit or foundation — particularly for grant due diligence, funder vetting, or officer compensation research — and want to avoid paying for commercial nonprofit databases like Candid/GuideStar. Ideal for grant-writing agents that need to qualify funders before investing proposal effort.

## Known failure modes

- Organization not found in 990 database — returns empty or error if EIN or name doesn't match a known filer
- Stale data — 990 filings are published with a 1-2 year lag, so very recent financials may not be available
- Ambiguous organization name matching multiple nonprofits — may return wrong entity or require disambiguation
- Small or newly formed nonprofits may have limited or no 990 filing history
- Service unavailability due to upstream IRS data source or Vercel hosting issues

## How this service works

Grant discovery and application intelligence API, plus IRS Form 990-based nonprofit/funder financial intelligence. 12 endpoints powered by Grants.gov, USASpending.gov, live IRS public records (EO Business Master File + SOI Form 990/990-PF Annual Extracts), and Claude. All endpoints require x402 payment (USDC on Base mainnet). Flagship match endpoint includes Instrumentl, Grants.gov, and Candid Foundation Directory tool links. Grant writer endpoint includes writing tool links + Amazon grant writing books.

## Output

Returns structured financial intelligence derived from IRS Form 990 filings, including multi-year trends in revenue, expenses, and assets; officer and executive compensation figures; and flagged anomalies or red flags such as declining reserves, high overhead ratios, or compensation outliers.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "ein": {
   "type": "string",
   "description": "9-digit EIN, e.g. 530196605"
  },
  "lang": {
   "type": "string",
   "description": "lang"
  },
  "state": {
   "type": "string",
   "description": "2-letter US state code or full name — required with org_name; optional with ein (EIN queries fall back to a nationwide BMF search automatically)"
  },
  "org_name": {
   "type": "string",
   "description": "organization legal name (requires state)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "red_flags": [],
  "financials": {
   "years": [
    {
     "tax_period": "202306",
     "total_revenue": 3217077611,
     "total_functional_expenses": 2971106889
    }
   ]
  },
  "organization": {
   "ein": "530196605",
   "name": "AMERICAN NATIONAL RED CROSS",
   "foundation_code_description": "Public charity — publicly supported (donative), 170(b)(1)(A)(vi)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/grantpulse-nonprofit-financial-intelligence-c01c485a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from grantpulse-three.vercel.app](https://www.zero.xyz/host/grantpulse-three.vercel.app/llms.txt)
