Design buildings with optimal natural lighting using precise shadow calculations.
Architects need to understand how sunlight and shadows will affect buildings throughout the day and year. Manual calculations are time-consuming and building simulations need accurate sun data.
Feed precise sun position data into your design tools and simulations. Calculate shadow lengths, predict natural lighting patterns, and ensure buildings meet daylighting requirements.
const res = await fetch("https://api.apiverve.com/v1/sunposition?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);