# Greater Good Grants Brief

> Greater Good Grants Brief is a paid API for AI agents from greatergood.site, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-15).

Returns a curated brief of current federal and foundation grant opportunities matching a nonprofit or organization's mission, keywords, deadline window, and eligibility criteria.

## Facts

- Endpoint: GET https://greatergood.site/v1/grants/brief
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/greater-good-grants-brief-e2c5352a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xBz-L0R53JyBVyb3w2sQT

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 greater-good-grants-brief-e2c5352a
```

Example prompt: Find me current grant opportunities for our food security nonprofit — use keywords like 'hunger relief', 'food access', and 'community nutrition', look for grants with deadlines within the next 90 days, and filter for 501c3 eligibility.

## When to prefer this

Choose this endpoint when you need a curated, mission-matched brief of grant opportunities — especially when you have a clear mission statement, specific keywords, and a deadline window. It is particularly useful for nonprofits and foundations seeking actionable, filtered results rather than raw grant database dumps. Prefer this over generic grant search tools when you need urgency signals (deadlines within 30 days) and structured next-action guidance included in the response.

## Known failure modes

- Missing or too-short mission field (minLength 5) returns validation error
- Empty or oversized keywords array (must have 1–12 items) causes rejection
- deadlineDays outside 7–365 range returns parameter error
- No matching opportunities found returns empty opportunities array
- Network or upstream data source unavailability returns 5xx error

## How this service works

News for the love of humanity. Evidence-backed U.S. reporting with sources, dates, and room for uncertainty.

## Output

Returns a JSON object with a headline summarizing the number of matching opportunities, a list of grant opportunities with details, a count of urgent deadlines within 30 days, and a list of recommended next actions for the applicant.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "mission": {
   "type": "string",
   "minLength": 5
  },
  "keywords": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "maxItems": 12,
   "minItems": 1
  },
  "deadlineDays": {
   "type": "integer",
   "maximum": 365,
   "minimum": 7
  },
  "eligibilityCodes": {
   "type": "array",
   "items": {
    "type": "string"
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "headline": "10 current federal opportunity matches",
  "nextActions": [],
  "opportunities": [],
  "urgentDeadlinesWithin30Days": 2
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/greater-good-grants-brief-e2c5352a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from greatergood.site](https://www.zero.xyz/host/greatergood.site/llms.txt)
