Vai al contenuto
GET /v1/freezing-point

Freezing point from salinity

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/seawater-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

curl "https://api.oanor.com/seawater-api/v1/freezing-point" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/seawater-api/v1/freezing-point", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/seawater-api/v1/freezing-point");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/seawater-api/v1/freezing-point",
    headers={"x-oanor-key": "oanor_test_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "note": "The freezing point of seawater (Millero) drops with salinity — about −1.9 °C at the ocean's typical 35 ppt, versus 0 °C for fresh water. Because salt also lowers the temperature of maximum density below the freezing point, seawater keeps overturning and cooling all the way to freezing instead of stratifying like a freshwater lake — which is why the open ocean rarely freezes except in the polar seas, and the ice that forms is nearly salt-free.",
        "inputs": {
            "salinity_ppt": 35
        },
        "freezing_point_c": -1.9223
    },
    "meta": {
        "timestamp": "2026-06-07T08:18:07.843Z",
        "request_id": "86601428-d9c5-4131-827b-c158431da979"
    },
    "status": "ok",
    "message": "Freezing point",
    "success": true
}