Show customers which plants will thrive in their location.
Online nurseries sell plants to customers in incompatible climates, leading to returns and bad reviews.
Detect customer zone from shipping address and display compatibility warnings or filter products.
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);