Get USDA plant hardiness zone information for any US zip code. Returns zone number, temperature ranges, and planting guidance.
{
"status": "ok",
"error": null,
"data": {
"zipCode": "97201",
"zone": "8b",
"tempRange": "15 to 20",
"zoneTitle": "8b: 15 to 20",
"details": {
"tempRange": "15°F to 20°F (-9°C to -7°C)",
"description": "Mild and relatively warm, found in parts of southern U.S. like the Gulf Coast and parts of Texas.",
"plantSurvival": "A wide range of plants, including many Mediterranean and subtropical varieties."
}
}
}






Get USDA plant hardiness zone information for any US zip code. Returns zone number, temperature ranges, and planting guidance.
A single authenticated GET with the location you care about — no SDK required.
GET /v1/hardinesszone?query=… x-api-key: your_key
Each request pulls from multiple upstream sources and computes the derived fields for you.
One structured object, typically under 200 ms — ready to render.
{ zipCode, zone, tempRange, … }
Real applications shipping on this endpoint today — each with the numbers that made it worth wiring up.
See every use caseAutomatically detect the user's zone and filter plant recommendations to those that will survive.
Detect customer zone from shipping address and display compatibility warnings or filter products.
Copy a working request, or install a typed SDK. Same endpoint, same key.
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);Every related API ships with your key — no separate plans, no extra keys, one bill.
See pricingReady-made recipes for Zapier, Make, and n8n — trigger on an event, and the data lands where your team works.
The same key unlocks every other APIVerve endpoint — reach for them when you need them.
Browse the catalog