# Suverse Climate NASA POWER Monthly Aggregates

> Suverse Climate NASA POWER Monthly Aggregates is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-15).

Returns month-by-month satellite-derived climate aggregates for any lat/lon coordinate using NASA POWER data, for a specified year range and community type.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-climate-nasa-power-monthly
- 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/suverse-climate-nasa-power-monthly-aggregates-cedb9904
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gf0yptygxqx965naqwq4P

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 suverse-climate-nasa-power-monthly-aggregates-cedb9904 -d '<json body>'
```

Example prompt: Pull monthly NASA POWER climate aggregates for coordinates 40.71° N, 74.01° W from 2010 to 2020, using the AG community, for temperature and precipitation parameters — I need seasonal climate normals for that location.

## When to prefer this

Choose this endpoint when you need keyless, satellite-derived monthly climate normals or multi-year aggregates for any global coordinate — particularly for planning, feasibility, or seasonal analysis tasks. Prefer this over weather forecast APIs when you need historical baselines rather than future predictions, and over raw NASA POWER access when you want a simple, paid proxy that avoids API key management. Ideal for agricultural, energy, construction, or environmental use cases requiring long-term climate context.

## Known failure modes

- Invalid or out-of-range coordinates (lat/lon outside NASA POWER coverage) return an error
- Unsupported parameter names result in a data-not-available response
- Year range outside NASA POWER historical archive bounds returns an error
- Invalid community identifier causes a request failure
- Missing required fields (coordinates, year range, community) return a validation error
- Network or upstream NASA POWER API outage may cause temporary failures

## How this service works

Monthly climate aggregates for any coordinate from NASA POWER. Specify parameters, community and a start/end year to get month-by-month values. Keyless, satellite-derived climate normals for planning and seasonal analysis.

## Output

Returns a structured time series of month-by-month climate values for each requested parameter and year in the specified range, derived from NASA POWER satellite data. Includes values for each calendar month across all years requested, organized by parameter and community type.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "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/suverse-climate-nasa-power-monthly-aggregates-cedb9904/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
