top of page

Coming soon - Join our waiting list

My Soul Connector

Two souls, one destination- finding your deeply compatible match

About My Soul Connector

Our Vision

My Soul Connector is a private, anonymous AI matchmaking service that delivers one intentional match at a time—pairing you on personality, values and emotional compatibility, with ID/selfie verification and background checks, plus secure one-to-one chats and interest-based community rooms.

Friends

Why It Works

Personality & values first

Built for genuine emotional compatibility

Community rooms

Interest-based spaces to spark deeper friendships and grow bonds

AI-powered matchmaking

Our SoulMatch AI handpicks matches based on your responses and will soon evolve to refine connections even further.

One match at a time

Private introductions with no public profiles and no swiping.

Verified safety

ID and selfie checks plus background screening — helping protect against catfishing, fraud, and unsafe behaviour

Friends

Romance

Best Value

Romantic Pathway

£4.99

4.99

Every month

+£29.99 ID, Verification & Safety Screening Fee

Discover love without swipes or fake profiles. Every member is verified. Our SoulMatch AI connects you based on values. Safe, meaningful introductions await!

Valid until canceled

One intentional romantic match at a time

Verified profiles (ID + selfie + background screening)

SoulMatch AI compatibility based on values & emotions

Secure chat with photo unlock only by mutual consent

No swiping, no fake profiles, no public browsing

Fall in love with confidence, safety first

Unlimited access to Community Chat Rooms

Best Value

Duel Pathway

£8.99

8.99

Every month

+£29.99 ID, Verification & Safety Screening Fee

Want the best of both worlds? Experience genuine friendships and soulful romantic connections with verified matches in safe, interest-based community spaces.

Valid until canceled

Everything in Platonic + Romantic Pathways

Friendship & romance matches in one membership

Unlimited access to Community Chat Rooms

SoulMatch AI improves matches as you go

Priority support & safety monitoring

One safe space for all meaningful connections

Best Value

Platonic Pathway

£4.99

4.99

Every month

+£29.99 ID, Verification & Safety Screening Fee

Lonely evenings are a thing of the past. Enjoy a one-on-one friendship match, then join themed Coffee Rooms for engaging conversations and lasting bonds.

Valid until canceled

Private one-on-one friendship matches

Verified members (ID + background checks)

Access to Community Chat Rooms

Safe, anonymous messaging inside the app

Personality & interest-based AI matching

Build lasting bonds & real companionship

Choose your pricing plan 

Find one that works for you

Member Testimonials

"My Soul Connector has transformed the way I approach relationships. The matches are genuinely compatible and the emphasis on safety and emotional connection is unmatched."

Sophia Martinez

"The background checks and ID verification at My Soul Connector put my mind at ease. It's refreshing to engage with others in a secure and trustworthy environment."

Ethan Thompson

"My Soul Connector's focus on emotional compatibility has allowed me to form deeper connections. It's a game-changer in the world of online matchmaking."

Olivia Davis

FAQs

Common Questions

How does your matchmaking process work?

Our AI-powered matchmaking system carefully selects deeply compatible matches based on personality, values, and emotional needs. We prioritise genuine emotional connections and safety.

Is my personal data safe?

We prioritise the security of your personal data. Our stringent verification processes and encryption measures ensure that your information remains protected at all times.

Can I trust the authenticity of member profiles?

Yes, our rigorous ID/selfie verification and background checks help create a community of genuine members committed to fostering authentic connections.

Get in Touch

Birthday
Day
Month
Year
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)); } } }); } });