# GridPulse Community Solar Finder & Savings Estimator

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

Looks up community solar program availability, typical bill savings, and enrollment steps by US state for homeowners and renters.

## Facts

- Endpoint: GET https://gridpulse.theaslangroupllc.com/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-savings-estimator-7caf15a5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KgSu1Qr0GsZYyzFjal3kF

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-savings-estimator-7caf15a5
```

Example prompt: Can you check what community solar programs are available in Colorado for a renter like me, and give me an idea of how much I'd save on my bill and how to sign up?

## When to prefer this

Use this endpoint when a user wants to know whether community solar is an option in their state (especially renters who cannot install rooftop solar), how much they might save on electricity bills, or how to get enrolled — as opposed to rooftop solar feasibility, grid carbon intensity, or electricity rate lookups.

## Known failure modes

- State not supported or no community solar programs available — returns empty or unavailable status
- Invalid or missing state parameter — returns 400-level error
- Upstream data unavailable — may return stale or partial results
- Housing type parameter unrecognized — defaults or errors depending on implementation

## 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, estimated typical bill savings figures, and step-by-step enrollment guidance tailored to homeowners or 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-savings-estimator-7caf15a5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from gridpulse.theaslangroupllc.com](https://www.zero.xyz/host/gridpulse.theaslangroupllc.com/llms.txt)
