Vai al contenuto
GET /v1/tidal-force

Tidal acceleration

Provalo dal vivo

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

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

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

Ottieni una chiave API

Frammenti di codice

curl "https://api.oanor.com/tidal-api/v1/tidal-force" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tidal-api/v1/tidal-force", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tidal-api/v1/tidal-force");
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/tidal-api/v1/tidal-force",
    headers={"x-oanor-key": "oanor_test_..."}
)

Risposta di esempio

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

{
    "data": {
        "note": "Tidal (differential) acceleration across a body a = 2·G·M·r/d³ — the stretch between the near and far sides. It falls off as 1/d³, far faster than gravity's 1/d².",
        "inputs": {
            "distance": 384400000,
            "body_radius": 6371000,
            "primary_mass": 7.342e+22
        },
        "tidal_acceleration_ms2": 1.0992780787710049e-6
    },
    "meta": {
        "timestamp": "2026-06-05T19:50:34.170Z",
        "request_id": "c95912f8-6c24-4692-bdc9-abc830e05ff9"
    },
    "status": "ok",
    "message": "Tidal acceleration",
    "success": true
}