# AgentToll Government Nonprofits Data

> AgentToll Government Nonprofits Data is a paid API for AI agents from agenttoll.dev, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Searches and retrieves nonprofit organization data from federal and state government sources by query and/or state filter

## Facts

- Endpoint: POST https://agenttoll.dev/paid/gov/nonprofits
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenttoll-government-nonprofits-data-8c403e1f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_K6Pc-zg8oOuBEpHGbAwvg

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 agenttoll-government-nonprofits-data-8c403e1f -d '<json body>'
```

Example prompt: Search the federal nonprofit database for education-focused nonprofits in Ohio and give me a list of what's registered.

## When to prefer this

Choose this endpoint when you need structured, government-sourced nonprofit organization data filterable by state and keyword, especially for due diligence, grant research, OSINT, or civic data workflows. It is ideal when you need pay-per-call access without a subscription, and when you want data directly from federal/state government nonprofit registries rather than third-party charity aggregators.

## Known failure modes

- No results found for obscure or misspelled nonprofit names — returns empty data array
- Invalid state code or unsupported state filter — may return empty results or error
- Query too broad returns large unfiltered datasets — agent should narrow query or add state filter
- Service unavailability or upstream data source outage — success:false response
- Payment failure via x402 protocol prevents data access

## How this service works

108+ receipt-backed x402 work products for AI agents. Clear prices, spend caps, buyer metadata, and structured results over Base USDC.

## Output

Returns an array or object of nonprofit organization records matching the query and/or state filter, along with metadata including the total count of results, data source name, and the timestamp when the data was generated. A boolean 'cached' flag indicates whether the response came from cache, and 'success' indicates request status.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "query": {
   "type": "string"
  },
  "state": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "oneOf": [
    {
     "type": "array"
    },
    {
     "type": "object"
    }
   ]
  },
  "meta": {
   "type": "object",
   "properties": {
    "count": {
     "type": "integer"
    },
    "source": {
     "type": "string"
    },
    "generated_at": {
     "type": "string",
     "format": "date-time"
    }
   }
  },
  "cached": {
   "type": "boolean"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenttoll-government-nonprofits-data-8c403e1f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agenttoll.dev](https://www.zero.xyz/host/agenttoll.dev/llms.txt)
