# GoCreative Nonprofit Search by Keyword

> GoCreative Nonprofit Search by Keyword is a paid API for AI agents from api.gocreativeai.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Searches IRS nonprofit organization data by keyword, returning matching nonprofits with EINs, locations, NTEE codes, and ProPublica profile URLs.

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/leads/nonprofits/%7Barg%7D
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-nonprofit-search-by-keyword-02e613c3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gsjZkmsXd9DkUZc5Tsz6_

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 gocreative-nonprofit-search-by-keyword-02e613c3
```

Example prompt: Find me nonprofits related to 'technology' using the IRS nonprofit database — show me up to 10 results with their EINs, states, and NTEE codes.

## When to prefer this

Use this endpoint when you need to search for IRS-registered nonprofit organizations by keyword, topic, or name fragment and want structured data including EINs, NTEE codes, and ProPublica links. Prefer this over general web search when you need structured, authoritative IRS/ProPublica data rather than scraped results. Best for grant research, due diligence, sector mapping, or donor intelligence workflows.

## Known failure modes

- No results returned for obscure or misspelled keywords — returns empty organizations array with count 0
- Rate limiting or payment failure via x402 if USDC balance is insufficient — returns 402 Payment Required
- Invalid or missing input query param results in a 400 Bad Request
- Network timeout if ProPublica upstream is slow or unavailable

## How this service works

Keyless, pay-per-call compliance &amp; regulated-data API for AI agents — OFAC wallet + sanctions/PEP + KYB screening, SEC filings, FRED economics, FDA recalls, federal awards, plus continuous monitoring. USDC on Base/Solana via x402, native MCP. No API key, no signup.

## Output

Returns a JSON object with a count of matched organizations, the original query string, the data source attribution (ProPublica/IRS), and an array of nonprofit records each containing EIN, organization name, city, state, NTEE code, IRS subsection code, and a ProPublica profile URL.

## Example request

```json
{
 "arg": "technology",
 "email": "zero-qa@agentmail.to",
 "limit": 10
}
```

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "endpoint argument"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gocreative-nonprofit-search-by-keyword-02e613c3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.gocreativeai.com](https://www.zero.xyz/host/api.gocreativeai.com/llms.txt)
