# GrantPulse Grant Matching

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

Returns personalized federal, state, and foundation grant matches for a nonprofit or small business based on its organization type and mission.

## Facts

- Endpoint: GET https://grantpulse-three.vercel.app/api/grant/match
- Price: $0.15/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-matching-eb9525c9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XxS5JegF9_RXKePQH-74_

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-matching-eb9525c9
```

Example prompt: Can you find grant matches for my nonprofit, Green Futures Alliance, which focuses on urban environmental education for underserved youth — I need federal, state, and foundation funding options we'd likely qualify for?

## When to prefer this

Use this endpoint when an agent needs to discover a broad, personalized set of grant opportunities across multiple funding sources (federal, state, foundation) simultaneously for a nonprofit or small business. Prefer over the dedicated federal-only or state-only endpoints when the user wants a cross-cutting overview of what's available for their mission.

## Known failure modes

- Missing or vague mission description may return low-relevance matches
- Unsupported organization type may yield empty or generic results
- Payment failure returns 402 with no grant data
- Overly broad queries may return too many unfiltered results
- Network timeout if matching service is slow

## How this service works

Grant matching for nonprofit and small-business agents. Returns personalized federal, state, and foundation grant discovery for an organization's type and mission.

## Output

A list of personalized grant opportunities across federal, state, and private foundation sources, matched to the organization's type and mission, including grant names, funders, and relevant details for each opportunity.

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "org_type",
      "mission"
     ],
     "properties": {
      "lang": {
       "type": "string",
       "description": "lang"
      },
      "size": {
       "type": "string",
       "description": "size"
      },
      "sector": {
       "type": "string",
       "description": "arts | health | education | environment | technology | agriculture | community | housing | science"
      },
      "mission": {
       "type": "string",
       "description": "mission"
      },
      "location": {
       "type": "string",
       "description": "location"
      },
      "org_type": {
       "type": "string",
       "description": "nonprofit | small_business | individual | public_university | private_university | state_government | local_government | tribal | for_profit | other"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/grantpulse-grant-matching-eb9525c9/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)
