# GrantPulse Grant Eligibility Checker

> GrantPulse Grant Eligibility Checker is a paid API for AI agents from grantpulse-three.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Performs a criterion-by-criterion eligibility analysis for a specific grant, returning pass/fail results and gray-area flags for each requirement

## Facts

- Endpoint: GET https://grantpulse-three.vercel.app/api/grant/eligibility
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/grantpulse-grant-eligibility-checker-c49147bd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FKZz9Erl-crRZPh9u0IWz

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 grantpulse-grant-eligibility-checker-c49147bd
```

Example prompt: Can you check if our nonprofit — a 501(c)(3) environmental education org founded in 2018 with annual revenue of $450,000 and operations in rural Colorado — qualifies for the EPA Environmental Education grant, and flag any criteria where we might be in a gray area?

## When to prefer this

Use this endpoint when an agent or grant-writer needs a detailed, criterion-level eligibility breakdown before investing time in a full application — especially when gray-area qualification flags would help prioritize or strengthen the application strategy. Prefer over generic grant search or matching endpoints when the specific grant is already known and the question is whether the applicant qualifies.

## Known failure modes

- Grant ID not found or unrecognized — returns no matching grant error
- Insufficient applicant profile data to evaluate all criteria — returns incomplete analysis
- Grant database out of date — eligibility criteria may not reflect latest program guidelines
- Rate limit or payment failure — returns 402 or 429 status

## How this service works

Grant eligibility checker for grant-writer and funding agents. Returns a criterion-by-criterion analysis of whether an applicant qualifies, with gray-area flags.

## Output

A structured breakdown of each eligibility criterion for the specified grant, with pass/fail/gray-area status per criterion, summary qualification verdict, and flagged borderline requirements that warrant attention before applying.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "org_type",
  "grant_name"
 ],
 "properties": {
  "lang": {
   "type": "string",
   "description": "lang"
  },
  "agency": {
   "type": "string",
   "description": "agency"
  },
  "org_type": {
   "type": "string",
   "description": "org_type"
  },
  "grant_name": {
   "type": "string",
   "description": "grant_name"
  },
  "org_profile": {
   "type": "string",
   "description": "org_profile"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/grantpulse-grant-eligibility-checker-c49147bd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from grantpulse-three.vercel.app](https://www.zero.xyz/host/grantpulse-three.vercel.app/llms.txt)
