# Suverse Ocean Wave Daily Summary

> Suverse Ocean Wave Daily Summary is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns daily ocean wave statistics (max wave height, max period, dominant direction) for a given coordinate using Open-Meteo Marine data.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-ocean-wave-daily
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-ocean-wave-daily-summary-40593079
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_n3rMLWNIYUJi9dAZfLCSs

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-ocean-wave-daily-summary-40593079 -d '<json body>'
```

Example prompt: Can you pull the daily ocean wave summary for the next 5 days at latitude 34.0195 and longitude -118.4912, so I can see the max wave height, max period, and dominant direction for my surf trip planning?

## When to prefer this

Choose this endpoint when you need keyless, low-cost daily ocean wave summaries (height, period, direction) for coastal or surf planning at specific coordinates. It is ideal for multi-day trip planning where per-day aggregated marine data suffices over hourly resolution. Prefer alternatives if you need hourly granularity, real-time buoy data, or wind/weather data alongside wave data.

## Known failure modes

- Invalid or out-of-range coordinates return an error response
- Dates too far in the future may return no data or incomplete forecasts
- Network timeout or proxy unavailability results in a 5xx error
- Malformed request body (missing required fields) returns a 4xx validation error
- Open-Meteo upstream outage may cause failed or stale responses

## How this service works

Daily ocean wave summary for a coordinate: max wave height, max period, and dominant direction. Keyless Open-Meteo Marine. For agents planning multi-day coastal trips or surf windows.

## Output

A daily summary of ocean wave conditions for the specified coordinate, including maximum wave height (meters), maximum wave period (seconds), and dominant wave direction (degrees) for each requested day, sourced from the Open-Meteo Marine API without requiring an API key.

## 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-ocean-wave-daily-summary-40593079/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)
