Careers

Careers

We’re building tools for brands and creators to link up, collab, and create cool stuff.

The work’s fun, the team’s cooler! and we’re always down to meet people who get it.

We’re not just looking for resumes… we’re looking for vibes ✨

const input = document.querySelector('#usernameInput'); const button = document.querySelector('#checkButton'); button.addEventListener('click', () => { const instagramHandle = input.value; if (instagramHandle) { triggerWebhook(instagramHandle); } else { alert('Please enter an Instagram handle!'); } }); async function triggerWebhook(handle) { const response = await fetch('YOUR_WEBHOOK_URL', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ instagramHandle: handle }), }); const data = await response.json(); updateModal(data); } function updateModal(data) { console.log(data); // For now, just log it }