# GridPulse Community Solar Finder

> GridPulse Community Solar Finder is a paid API for AI agents from gridpulse-amber.vercel.app, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-15).

Returns community solar program availability, typical savings, and enrollment steps by US state for homeowners and renters

## Facts

- Endpoint: GET https://gridpulse-amber.vercel.app/api/energy/community-solar
- 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/gridpulse-community-solar-finder-28f9e322
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Es9tQ_dt1TyyT6_yoIzAF

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 gridpulse-community-solar-finder-28f9e322
```

Example prompt: Can you check if there are any community solar programs available in Colorado for a renter like me, and tell me how much I could typically save and how to sign up?

## When to prefer this

Use this endpoint when a user wants to find and join a community solar program in their state, especially if they are a renter who cannot install rooftop solar. Prefer over generic solar endpoints when the user specifically needs community/shared solar options, savings estimates, and enrollment guidance rather than rooftop solar feasibility or battery storage analysis.

## Known failure modes

- State not supported or no community solar programs available returns empty or null availability
- Invalid or unrecognized state code returns 400 error
- Service unavailable or timeout returns 500 error
- Program data may be stale if state policy recently changed

## How this service works

Community solar finder and savings estimator by state — program availability, typical bill savings, and how to enroll for homeowners and renters. For homeowner and renter agents.

## Output

Returns community solar program availability for the requested state, including typical savings estimates for participants and step-by-step enrollment guidance — covering both homeowners and renters.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "state"
 ],
 "properties": {
  "zip": {
   "type": "string",
   "description": "US ZIP code (optional, refines local results)"
  },
  "state": {
   "type": "string",
   "description": "2-letter US state code"
  },
  "monthly_bill": {
   "type": "integer",
   "description": "Average monthly electricity bill in USD"
  },
  "credit_preference": {
   "type": "string",
   "description": "Preference for bill credit vs. direct payment programs"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gridpulse-community-solar-finder-28f9e322/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from gridpulse-amber.vercel.app](https://www.zero.xyz/host/gridpulse-amber.vercel.app/llms.txt)
