top of page
Feet by the Fire

Because the right connection is worth ten thousand swipes, make your one private introduction count.

Join us today.

 

Best Friends

About Us

Like you, we grew exhausted by dating apps that left us wondering if anyone was really who they claimed to be—and by friend-finding tools that never quite fit. Determined to change the game, we poured our own experiences of ghosting, fatigue and mistrust into a simple promise: every introduction here is private, verified and intentional

Welcome to the place we wish existed for ourselves. 

Best Friends
Woman with Computer

The Process

We believe connection should be simple, safe, and soulful. Here’s how it works:

  • Register – Email + ID + selfie + background check.

  • Onboarding – Welcome email & intro to SoulMatch.

  • Questionnaire – Deep values & communication.

  • Get Your Match – One handpicked match.

  • Chat Safely – Secure chats, photo unlock on consent.

  • Community Rooms – Themed group conversations.

  • AI Learning – Matches improve over time.

  • Support – Optional check-ins & support.

bottom of page
import wixUsers from 'wix-users'; import wixData from 'wix-data'; $w.onReady(function () { const user = wixUsers.currentUser; // Only run if user is logged in if (user.loggedIn) { const userId = user.id; // Generate a short User ID: usr + last 4 chars of Wix user ID const shortId = "usr" + userId.slice(-4); // Update member profile if User ID is empty wixData.query("Members/PrivateMembersData") .eq("_id", userId) .find() .then((results) => { if (results.items.length > 0) { const member = results.items[0]; if (!member.userID) { // only assign if empty member.userID = shortId; wixData.update("Members/PrivateMembersData", member) .catch((err) => console.error("Error updating User ID:", err)); } } }); } });