# NOAA CO-OPS Ocean Water Temperature (Today)

> NOAA CO-OPS Ocean Water Temperature (Today) 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 sea water temperature for today at a specified NOAA CO-OPS station, sampled every 6 minutes.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-ocean-water-temp
- 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/noaa-co-ops-ocean-water-temperature-today-ae27b7d9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_A7Vw0PA8MT90NP_4AJp9H

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 noaa-co-ops-ocean-water-temperature-today-ae27b7d9 -d '<json body>'
```

Example prompt: What's the sea water temperature at NOAA CO-OPS station 8418150 today? I want to see all the 6-minute readings so far.

## When to prefer this

Choose this endpoint when you need real-time or same-day observed sea water temperature data from a specific NOAA CO-OPS coastal station without requiring a NOAA API key. It is best suited for agents monitoring marine conditions, planning water activities, or logging daily coastal temperature trends. Not suitable for historical multi-day queries or stations lacking a water temperature sensor.

## Known failure modes

- Station does not have a water temperature sensor — no data returned
- Invalid or unknown NOAA station ID — error response
- Station is offline or data gap — partial or empty dataset
- Network or upstream NOAA API timeout — service unavailable response

## How this service works

Observed sea water temperature for today at a NOAA CO-OPS station, 6-minute samples. Keyless NOAA Tides and Currents. For agents tracking ocean/bay water temperature. Not all stations carry this sensor.

## Output

Returns today's observed sea water temperature time series from the specified NOAA CO-OPS station, with readings at 6-minute intervals. Each record includes a timestamp and temperature value. Coverage depends on whether the station carries a water temperature sensor.

## 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/noaa-co-ops-ocean-water-temperature-today-ae27b7d9/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)
