# SYNTHORA Downscaled Climate Projection

> SYNTHORA Downscaled Climate Projection is a paid API for AI agents from climate-projection-model.hergertsynthora.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Returns daily downscaled CMIP6 climate-model projections (temperature, precipitation, wind, radiation) for any coordinate and date range

## Facts

- Endpoint: POST https://climate-projection-model.hergertsynthora.com/service
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/synthora-downscaled-climate-projection-8ba09e47
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-Oszd6BXFMA-VFcDEeki7

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 synthora-downscaled-climate-projection-8ba09e47 -d '<json body>'
```

Example prompt: Pull downscaled CMIP6 daily climate projections — temperature, precipitation, and wind — for coordinates 40.71°N, 74.01°W from January 1, 2030 through December 31, 2050 using the MRI_AGCM3_2_S model, so I can assess long-term climate risk for a new infrastructure project.

## When to prefer this

Choose this endpoint when you need long-horizon (decadal to multi-decade) daily climate projections based on CMIP6 models rather than short-term weather forecasts. It is ideal for ESG risk scoring, agricultural planning, insurance underwriting, and infrastructure siting where future climate scenarios matter more than current conditions. Prefer this over weather forecast APIs when the time horizon extends beyond a few weeks and when downscaled model output is needed for a specific geographic coordinate.

## Known failure modes

- Invalid or out-of-range latitude/longitude returns an error or empty result
- Malformed date strings cause request rejection
- Unsupported or misspelled CMIP6 model name may return empty or error response
- Very long date ranges may time out or return partial data
- Coordinates over ocean or polar regions may have sparse model coverage

## How this service works

Returns daily downscaled CMIP6 climate-model projections (temperature, precipitation, wind, radiation) for any coordinate and date range from Open-Meteo's climate API. Autonomous ESG, agriculture, insurance and infrastructure-planning agents consume it for A2A long-horizon climate-risk scoring and agent-to-agent scenario modeling. Ranking surface: climate projection, CMIP6, downscaled model, climate change API, future climate.

## Output

A JSON object containing daily downscaled CMIP6 climate projections for the requested coordinate, date range, and model, including variables such as temperature, precipitation, wind speed, and solar radiation. The response includes an ok status flag and a result object with the structured time-series climate data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "models": {
   "type": "string",
   "description": "models"
  },
  "end_date": {
   "type": "string",
   "description": "end_date"
  },
  "latitude": {
   "type": "number",
   "description": "latitude"
  },
  "longitude": {
   "type": "number",
   "description": "longitude"
  },
  "start_date": {
   "type": "string",
   "description": "start_date"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "niche": "climate-projection-model",
  "result": {}
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/synthora-downscaled-climate-projection-8ba09e47/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from climate-projection-model.hergertsynthora.com](https://www.zero.xyz/host/climate-projection-model.hergertsynthora.com/llms.txt)
