# Suverse Environment Flood Peak Outlook

> Suverse Environment Flood Peak Outlook is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.07/call, status unknown (last checked 2026-09-16).

Returns up to 30 days of daily peak river discharge forecasts (m³/s) for any global coordinate using Open-Meteo's flood API, keyless.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-environment-flood-peak
- Price: $0.07/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-environment-flood-peak-outlook-8a934028
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eoDIVkv2Eci6T0Mh4xZIx

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-environment-flood-peak-outlook-8a934028 -d '<json body>'
```

Example prompt: What's the 30-day peak river discharge forecast for the coordinates 48.8566°N, 2.3522°E? I want to assess flood risk for that basin over the next month.

## When to prefer this

Choose this endpoint when you need a keyless, pay-per-call, globally available river discharge forecast without managing API credentials. It is ideal for AI agents performing flood risk assessments, environmental monitoring, or basin stress analysis where Open-Meteo coverage suffices and a 30-day daily maximum discharge outlook is the required output.

## Known failure modes

- Invalid or out-of-range coordinates return an error or empty dataset
- Coordinates over ocean or non-river areas may return zero or null discharge values
- Forecast horizon exceeding 30 days is not supported
- Payment failure (x402) if USDC funds are insufficient
- Upstream Open-Meteo API unavailability causes timeout or error response

## How this service works

Extended peak river discharge outlook for any coordinate from Open-Meteo's flood API. Returns up to 30 days of daily maximum discharge (m3/s). Keyless, global. Built for early flood-risk and basin-stress signals.

## Output

An array of daily records spanning up to 30 days, each containing the date and the projected maximum river discharge in cubic meters per second (m³/s) for the specified coordinate, derived from Open-Meteo's global flood model. Useful as an early-warning or basin-stress signal.

## 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-environment-flood-peak-outlook-8a934028/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)
