# Suverse Ocean Wind – NOAA CO-OPS Coastal Wind Observations

> Suverse Ocean Wind – NOAA CO-OPS Coastal Wind Observations 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 observed coastal wind speed, direction (degrees + compass), and gust data for today in 6-minute samples from a specified NOAA CO-OPS station, keyless.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-ocean-wind
- 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-wind-noaa-co-ops-coastal-wind-observations-0f74c65a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3TaH6Xyn8s0CWJ2L3Y4oX

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-wind-noaa-co-ops-coastal-wind-observations-0f74c65a -d '<json body>'
```

Example prompt: What are today's wind speed, direction, and gust readings at NOAA station 8454049 in Providence, RI — I'm trying to decide if it's safe to take the sailboat out this afternoon?

## When to prefer this

Choose this endpoint when you need keyless, low-cost access to real-time NOAA CO-OPS coastal wind observations (speed, direction, gusts) in 6-minute resolution for a specific station today. Prefer this over generic weather APIs when maritime-grade official NOAA data is required for sailing, boating, or coastal operations. Ideal for agents that need current-day wind snapshots without managing NOAA API credentials.

## Known failure modes

- Invalid or non-existent NOAA station ID returns an error or empty dataset
- Station does not have a wind sensor (not all CO-OPS stations measure wind)
- Data may lag real-time by up to 6 minutes due to sampling interval
- If the station is offline or under maintenance, no data is returned
- Requests with malformed body structure return a 4xx error

## How this service works

Observed coastal wind speed, direction (deg + compass), and gusts for today at a NOAA CO-OPS station, 6-minute samples. Keyless NOAA Tides and Currents. For agents planning sailing, boating, or coastal operations.

## Output

Returns today's 6-minute-interval wind observations from the specified NOAA CO-OPS station, including wind speed (likely in knots or m/s), wind direction in degrees and compass notation (e.g. NNW), and gust speed — covering the current day's available readings.

## 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-wind-noaa-co-ops-coastal-wind-observations-0f74c65a/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)
