# GridPulse Solar Feasibility Analyzer

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

Estimates home solar panel feasibility, energy production, payback period, and IRA tax credit savings for a given property

## Facts

- Endpoint: GET https://gridpulse-amber.vercel.app/api/energy/solar
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gridpulse-solar-feasibility-analyzer-05fe42b0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mHB5NkwQbWUWL90mX0ijF

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-solar-feasibility-analyzer-05fe42b0
```

Example prompt: Can you run a solar feasibility analysis on my home at 4821 Maple Drive, Austin TX 78745 and tell me the estimated annual production, payback period, and how much I'd save with the IRA solar tax credit?

## When to prefer this

Use this endpoint when a user wants to evaluate whether their home is suitable for solar panels, understand the financial return on solar investment, or calculate IRA clean energy tax credits. Best for residential property analysis combining production estimates with payback and tax incentive calculations in a single call.

## Known failure modes

- Address not found or outside serviceable area — returns error with no feasibility data
- Insufficient solar irradiance data for location — partial results or low-confidence estimate
- Missing required property parameters — returns validation error
- Service unavailable or timeout — 5xx response

## How this service works

Solar panel savings and payback calculator — home solar feasibility with production estimate, payback period, and IRA 30% tax credit analysis. For homeowner and solar agents.

## Output

Returns a solar feasibility report including estimated annual energy production (kWh), projected payback period (years), applicable IRA Inflation Reduction Act tax credit amount, and overall home solar viability assessment

## Example request

```json
{
 "zip": "78745",
 "state": "TX",
 "system_kw": 6
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "zip": {
   "type": "string",
   "description": "US ZIP code (preferred)"
  },
  "state": {
   "type": "string",
   "description": "2-letter state code (if no zip)"
  },
  "system_kw": {
   "type": "number",
   "description": "System size in kW (2-20)"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gridpulse-solar-feasibility-analyzer-05fe42b0/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)
