# Suverse Ocean Wave Conditions

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

Returns hourly ocean wave forecast (height, direction, period) for any coastal coordinate via Open-Meteo Marine

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-ocean-wave-conditions
- Price: $0.065/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-conditions-2cc897fa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_I1v4Actpu8DuDYV9jMk_O

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-conditions-2cc897fa -d '<json body>'
```

Example prompt: What are the hourly ocean wave conditions at coordinates 34.01°N, 118.50°W — I need wave height, direction, and period for the next 24 hours for a surf trip planning.

## When to prefer this

Choose this endpoint when you need keyless, global ocean wave forecasts (height, direction, period) at an hourly resolution for any coastal coordinate without managing API credentials. It is ideal for marine operations, surf forecasting, shipping safety, and coastal planning agents. Prefer over raw Open-Meteo Marine API when you need a simple proxy with x402 micropayment access and no key management.

## Known failure modes

- Invalid or inland coordinates return no marine data or an error
- Coordinates outside Open-Meteo Marine coverage area may return empty results
- Malformed request body causes a 400-level error
- Service unavailability from Open-Meteo upstream returns a 5xx error
- Payment failure or insufficient USDC balance blocks the request with a 402 response

## How this service works

Hourly ocean wave forecast for any coastal coordinate from Open-Meteo Marine. Returns wave height (m), direction and period. Keyless, global. Useful for marine ops, surf, shipping and coastal safety agents.

## Output

Returns hourly ocean wave forecast data for the specified coastal coordinate, including wave height in meters, wave direction in degrees, and wave period in seconds, sourced from Open-Meteo Marine global model with no API key required.

## 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-conditions-2cc897fa/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)
