# Suverse River Discharge Forecast

> Suverse River Discharge Forecast is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-13).

Returns daily river discharge (flood) forecasts in cubic meters per second for a given latitude and longitude using the Open-Meteo flood API.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-river-discharge
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-river-discharge-forecast-59d42a8d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pES9kYy9ZZD7Vr2N6c7H2

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-river-discharge-forecast-59d42a8d -d '<json body>'
```

Example prompt: What is the daily river discharge forecast for the coordinates 47.3769° N, 8.5417° E? I need the flood risk data in cubic meters per second for the next few days.

## When to prefer this

Choose this endpoint when you need hydrological river discharge forecasts (flood flow in m³/s) for a specific geographic coordinate, especially for flood risk assessment, insurance underwriting, water management, or environmental monitoring workflows. It requires no API key and uses a pay-per-call model at $0.06 USDC, making it ideal for agents that need on-demand, low-friction access to flood forecasting data without managing API credentials.

## Known failure modes

- Invalid or out-of-range latitude/longitude returns an error or empty result
- Location not covered by Open-Meteo flood model (e.g. remote or arid areas with no river data)
- Upstream Open-Meteo API downtime causes request failure
- Malformed POST body or missing required fields returns a validation error
- Payment failure via x402 protocol prevents access to the endpoint

## How this service works

River discharge (flood) forecast for a latitude and longitude from the Open-Meteo flood API, no key. Returns daily river discharge in cubic meters per second. For AI agents in flood risk, insurance, and water management.

## Output

A daily time-series of river discharge values in cubic meters per second for the requested location, sourced from the Open-Meteo flood API. The response covers upcoming days and can be used to assess flood risk, plan water operations, or feed insurance models.

## 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-river-discharge-forecast-59d42a8d/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)
