# Suverse Ocean Sea Surface Temperature & Current Velocity

> Suverse Ocean Sea Surface Temperature & Current Velocity 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 current sea surface temperature and ocean current velocity for any global marine coordinate, sourced from Open-Meteo, with no API key required.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-ocean-sea-surface-temp
- 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-sea-surface-temperature-current-velocity-d84ced7d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EZ3RbkxaD9hNGP-xI_-5r

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-sea-surface-temperature-current-velocity-d84ced7d -d '<json body>'
```

Example prompt: What's the current sea surface temperature and ocean current velocity at coordinates 25.7617° N, 80.1918° W near Miami?

## When to prefer this

Choose this endpoint when you need keyless, instant access to sea surface temperature and ocean current data for any global marine location without managing API credentials. Ideal for agents needing real-time oceanographic data for fisheries, reef monitoring, climate analysis, or maritime routing. Prefer this over raw Open-Meteo API calls when you want a proxied, pay-per-use model with no setup.

## Known failure modes

- Invalid or landlocked coordinates return an error or null ocean data
- Coordinates outside the Open-Meteo ocean model coverage area may return no data
- Malformed request body (missing lat/lon or wrong bodyType) returns a 400-level error
- Service unavailability from Open-Meteo upstream causes 502/503 responses
- Payment failure (x402) prevents request from being processed

## How this service works

Current sea surface temperature and ocean current velocity for any marine coordinate from Open-Meteo. Keyless, global. Useful for fisheries, climate, reef monitoring and maritime routing.

## Output

Returns current sea surface temperature (in degrees Celsius or Kelvin) and ocean current velocity (speed and direction components) for the requested marine coordinate, sourced from Open-Meteo's global ocean model. No authentication token 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-sea-surface-temperature-current-velocity-d84ced7d/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)
