- Premium Cotton
- 6-Panel
- Unstructured
- SNAG COLLECTIVE Brand Snapback
- Full Color Printed Patch by Ninja Patches
Animal People Snap Back Hat - LOW STOCK
$25.00Price
Excluding Sales Tax
// backend/getIP.jsw import { fetch } from 'wix-fetch'; export async function getVisitorIP() { try { const response = await fetch("https://api.ipify.org?format=json", { method: "get" }); if (response.ok) { const json = await response.json(); return json.ip; // returns the visitor's IP address } else { return "Error fetching IP"; } } catch (err) { console.error("IP fetch failed", err); return "Unavailable"; } }