# SiteSignal Grant Readiness Checklist

> SiteSignal Grant Readiness Checklist is a paid API for AI agents from phases-prot-shine-royal.trycloudflare.com, paid per call via x402, $0.05/call, status down (last checked 2026-09-15).

Converts a Grants.gov opportunity ID into a structured, evidence-linked application-readiness checklist covering deadlines, eligibility, registrations, budget, attachments, and agency contacts.

## Facts

- Endpoint: GET https://phases-prot-shine-royal.trycloudflare.com/x402/grant-checklist
- Price: $0.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sitesignal-grant-readiness-checklist-b815e758
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rWRU9cfJEKtAhyTo5aEoF

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 sitesignal-grant-readiness-checklist-b815e758
```

Example prompt: Can you pull up a grant readiness checklist for Grants.gov opportunity 123456789? We're a 501(c)(3) nonprofit with a $250,000 project budget and need at least 30 days to prepare the application.

## When to prefer this

Choose this endpoint when you need a structured, actionable grant application checklist derived directly from a specific Grants.gov opportunity ID. It is ideal for nonprofits, universities, government agencies, or grant writers who want to quickly assess readiness before investing in a full application. Prefer this over generic grant search tools when you already have an opportunity ID and need evidence-linked, checklist-formatted guidance rather than raw grant listings.

## Known failure modes

- Invalid or non-existent opportunity_id (must be 1–12 digits) returns an error
- Opportunity no longer active or past deadline may return incomplete or stale checklist data
- Missing required opportunity_id query parameter returns a validation error
- Opportunity with restricted or non-public data may yield a partial checklist
- Payment failure via x402 protocol results in no response

## How this service works

Turn one Grants.gov opportunity into an evidence-linked application-readiness checklist covering deadline, eligibility, registrations, budget, attachments, and agency contact.

## Output

Returns a structured, evidence-linked checklist organized by category (deadline, eligibility, required registrations, budget considerations, required attachments, and agency contact details), with each item sourced to observable grant documentation so applicants know exactly what they need to do before submitting.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "opportunity_id"
     ],
     "properties": {
      "profile": {
       "type": "string",
       "maxLength": 800
      },
      "eligibility": {
       "type": "string",
       "maxLength": 200
      },
      "opportunity_id": {
       "type": "string",
       "pattern": "^[0-9]{1,12}$"
      },
      "project_budget_usd": {
       "type": "number",
       "minimum": 1
      },
      "days_needed_to_apply": {
       "type": "integer",
       "default": 21,
       "maximum": 180,
       "minimum": 1
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sitesignal-grant-readiness-checklist-b815e758/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from phases-prot-shine-royal.trycloudflare.com](https://www.zero.xyz/host/phases-prot-shine-royal.trycloudflare.com/llms.txt)
