# GrantPulse State Grant Programs API

> GrantPulse State Grant Programs API 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-13).

Returns state-level grant funding opportunities filtered by state, sector, and organization type, with agency links and an application calendar.

## Facts

- Endpoint: GET https://grantpulse-three.vercel.app/api/grant/state
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/grantpulse-state-grant-programs-api-e234d637
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aADhvREmXaW6Nn9KYkM1S

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-state-grant-programs-api-e234d637
```

Example prompt: Can you pull up state grant programs available for environmental nonprofits in California, including agency links and the application calendar?

## When to prefer this

Use this endpoint when you specifically need state-level grant programs (as opposed to federal or foundation grants) and want results filtered by state, sector, and organization type in a single call. Prefer this over the federal grant search endpoint when the user is looking for state agency funding, or over the grant matching endpoint when the user wants to browse available programs rather than get personalized matches.

## Known failure modes

- Invalid or unsupported state code returns empty results or 400 error
- Unsupported sector or org type combination returns no matching programs
- Missing required parameters (state) results in a 422 validation error
- Payment not processed correctly results in 402 Payment Required
- Stale grant data if underlying state agency databases have not been refreshed
- Rate limiting if too many calls are made in rapid succession

## How this service works

Grant discovery and application intelligence API, plus IRS Form 990-based nonprofit/funder financial intelligence. 12 endpoints powered by Grants.gov, USASpending.gov, live IRS public records (EO Business Master File + SOI Form 990/990-PF Annual Extracts), and Claude. All endpoints require x402 payment (USDC on Base mainnet). Flagship match endpoint includes Instrumentl, Grants.gov, and Candid Foundation Directory tool links. Grant writer endpoint includes writing tool links + Amazon grant writing books.

## Output

A list of state-level grant programs matching the requested state, sector, and organization type, including funding amounts, sponsoring agency names with links, and an application calendar showing deadlines and upcoming windows.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "state"
 ],
 "properties": {
  "lang": {
   "type": "string",
   "description": "lang"
  },
  "state": {
   "type": "string",
   "description": "state"
  },
  "sector": {
   "type": "string",
   "description": "sector"
  },
  "org_type": {
   "type": "string",
   "description": "org_type"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

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