# Suverse Civic Nonprofit Org Lookup

> Suverse Civic Nonprofit Org Lookup is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Returns a full US nonprofit profile by EIN including address, subsection code, ruling date, asset/income codes, and recent IRS filings via ProPublica Nonprofit Explorer — no API key required.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-civic-nonprofit-org
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-civic-nonprofit-org-lookup-abf7609e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_b-L0hxPJLrssjTviLFn93

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 suverse-civic-nonprofit-org-lookup-abf7609e -d '<json body>'
```

Example prompt: Can you pull up the full nonprofit profile for EIN 13-1837418 — I need the address, subsection code, ruling date, asset and income codes, and any recent IRS filings?

## When to prefer this

Choose this endpoint when you need structured IRS nonprofit data for a specific organization by EIN without provisioning a ProPublica API key. Ideal for agents auditing tax-exempt organizations, performing charity due diligence, or verifying grant recipient compliance. Prefer this over scraping ProPublica directly or using IRS bulk data when you need a single-org lookup in real time at low cost.

## Known failure modes

- EIN not found in ProPublica database — organization may not be registered or data not yet indexed
- Malformed or invalid EIN format causing a lookup failure
- ProPublica upstream API unavailable or rate-limited, resulting in a proxy error
- Organization exists but has no recent filings available (newer or dormant orgs)

## How this service works

Full US nonprofit profile by EIN: address, subsection code, ruling date, asset and income codes, recent IRS filings. Keyless ProPublica Nonprofit Explorer. For agents auditing tax-exempt orgs.

## Output

Returns a structured nonprofit profile including the organization's registered address, IRS subsection code (e.g. 501(c)(3)), ruling date, asset and income classification codes, and a list of recent IRS filings (Form 990 data) sourced from ProPublica Nonprofit Explorer.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "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/suverse-civic-nonprofit-org-lookup-abf7609e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
