Help users discover what plants will thrive in their location.
Gardeners waste money on plants that die in their climate because they don't know their hardiness zone.
Automatically detect the user's zone and filter plant recommendations to those that will survive.
const res = await fetch("https://api.apiverve.com/v1/hardinesszone?zip=97201", {
headers: { "x-api-key": "YOUR_API_KEY" },
});
const { data } = await res.json();
console.log(data);