/v1/tidal-force
Tidal acceleration
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten 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
}