Join as a Partner or Suggest a Vendor

Expand your reach in Calgary with BuyNearby.store. Sign up your store or recommend local vendors to benefit from our platform.

Partner Signup

Sign up your mom-and-pop shop to start selling online with fast local delivery. We'll handle the platform—you focus on your business.

Suggest a Vendor

Know a local store that could benefit from our platform? Suggest them here—we'll reach out and help them get started.

const APPS_SCRIPT_URL = 'https://script.google.com/macros/s/AKfycby5Dmk3PT-BNtTgL398LhrgkWMyaBn8iD2Lv4u-GE6hBhqyMKuYiOIH9lALbz7jzihE/exec'; function submitForm(form) { const formData = new FormData(form); fetch(APPS_SCRIPT_URL, { method: 'POST', body: formData }).then(response => response.text()) .then(data => { if (data === 'Success') { window.location.href = '/success.php'; } else { alert('Submission failed: ' + data); } }).catch(error => { alert('Error: ' + error.message); }); return false; }