Predict animal activity patterns using lunar position data.
Fishing and wildlife apps want to predict peak activity times. Many species are influenced by moon position - when the moon is overhead or underfoot, feeding activity often increases.
Integrate moon position data to show users optimal activity windows. When moon altitude indicates the moon is directly overhead (~90°) or underfoot (~-90° from opposite point), highlight these as prime activity times.
const res = await fetch("https://api.apiverve.com/v1/moonposition?lat=37.7749&lon=-122.4194&date=01-16-2026&time=14%3A30", {
headers: { "x-api-key": "YOUR_API_KEY" },
});
const { data } = await res.json();
console.log(data);