/v1/tidal-force
Tidal acceleration
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}