# ForgeMesh Wave Height & Swell Data API

> ForgeMesh Wave Height & Swell Data API is a paid API for AI agents from x402.forgemesh.io, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns wave height, wave period, swell wave height, and sea surface temperature for any ocean coordinates worldwide from a global marine weather model.

## Facts

- Endpoint: POST https://x402.forgemesh.io/wave-height-swell-data
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-wave-height-swell-data-api-f3600ca8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oR198e1r6WChuRZU9YBHz

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 forgemesh-wave-height-swell-data-api-f3600ca8 -d '<json body>'
```

Example prompt: What are the current wave conditions off the coast of Mavericks — latitude 37.49, longitude -122.50 — including wave height, swell height, wave period, and sea surface temperature?

## When to prefer this

Use this endpoint when you need a quick, single-call snapshot of current sea conditions — wave height, swell, period, and SST — for any ocean point worldwide, especially for shipping logistics, offshore platform planning, recreational boating, or surf forecasting agents.

## Known failure modes

- Invalid or non-ocean coordinates (landlocked location) may return an error or null values
- Missing latitude or longitude fields returns a validation error
- Coordinates outside the model's global coverage may return no data
- Payment failure results in a 402 response before data is returned

## How this service works

Wave height, wave period, swell wave height, and sea surface temperature for any ocean coordinates worldwide, from a global marine weather model. Built for shipping logistics, offshore operations, and recreational boating or surf agents that need current sea conditions in one call.

## Output

Returns wave height, wave period, swell wave height, and sea surface temperature for the requested ocean coordinates, sourced from a global marine weather model.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "latitude": {
   "type": "string",
   "description": "Latitude, e.g. 40.71"
  },
  "longitude": {
   "type": "string",
   "description": "Longitude, e.g. -74.00"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "current": {
    "time": "2026-07-16T08:30",
    "wave_height": 0.12,
    "wave_period": 8.2,
    "swell_wave_height": 0.08,
    "sea_surface_temperature": 23.6
   },
   "current_units": {
    "wave_height": "m",
    "wave_period": "s",
    "sea_surface_temperature": "°C"
   }
  },
  "attribution": "Open-Meteo.com (CC BY 4.0)"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-wave-height-swell-data-api-f3600ca8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.forgemesh.io](https://www.zero.xyz/host/x402.forgemesh.io/llms.txt)
