const response = await fetch("https://zeroclick.dev/api/v2/offers", {
method: "POST",
headers: {
"Content-Type": "application/json",
"x-zc-api-key": "your-api-key"
},
body: JSON.stringify({
method: "server",
ipAddress: clientIpAddress,
query: "best running shoes"
})
});
const offers = await response.json();
// Render offers in your UI