Naar de inhoud
GET /v1/tidal-force

Tidal acceleration

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/tidal-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}