# Greater Good Grants Detail Lookup

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

Fetches detailed information about a specific U.S. government grant opportunity by its numeric ID, including award ceiling, eligibility, and official URL.

## Facts

- Endpoint: GET https://greatergood.site/v1/grants/detail
- Price: $0.08/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-detail-lookup-2d007754
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tMRM-KJ9KaBEEtCV94g1g

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-detail-lookup-2d007754
```

Example prompt: Can you pull up the full details for grant opportunity 363537 — I need the award ceiling, eligibility rules, and the official grants.gov link?

## When to prefer this

Use this endpoint when you have a specific grants.gov opportunity ID and need structured detail data — award ceiling, eligibility text, and official URL — without scraping grants.gov directly. It is cheaper and faster than a full-text search and ideal for downstream filtering, eligibility matching, or populating grant-writing workflows.

## Known failure modes

- Invalid or non-existent opportunityId returns an error or empty result
- opportunityId below minimum value of 1 rejected by schema validation
- Grant opportunity may have expired or been removed from grants.gov, returning stale or missing data
- Network or upstream grants.gov outage may cause retrieval failure

## How this service works

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

## Output

A JSON object containing the grant's numeric ID, its official grants.gov detail page URL, the award ceiling in USD, and the full eligibility text as provided by the granting agency.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "opportunityId": {
   "type": "integer",
   "minimum": 1
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "id": "363537",
  "officialUrl": "https://www.grants.gov/search-results-detail/363537",
  "awardCeilingUsd": 453203,
  "eligibilityText": "Official eligibility text"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/greater-good-grants-detail-lookup-2d007754/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)
