👉 Refer | 💰 Earn | ♻️ Repeat
💰 Verify identity to increase your bounty chances
Verified referrals offer an unparalleled level of trustworthiness with recruiters. They demonstrate your commitment to vouch for the candidate and eliminate the need for recruiters to verify the referral. This results in reduced workload for recruiters, who will gladly acknowledge and reward your efforts!
Eugene Kupr
john promooo
john promo
Benjamin Rubin
Alexey SH
To cancel a submitted referral, please contact us by clicking the "?" button in the bottom right corner.
The status of your referral can be found in the "Referral status" property on the referral card.
FAQ
👉 Refer
💰 Earn
♻️ Repeat
🚧 WIP is in beta | We'd love to hear your ideas or feedback! → Reach out, no bots, only humans here.
We created WIP to help professionals with extensive industry networks and freelance recruiters turn their connections and referrals into cash effortlessly. It’s simple, fast, and rewarding!
We’re happy to have you on board!
Refer | Earn | Repeat
👉 Refer
- Verify your identity
- Explore all job openings
- Check your referral status
💰 Earn
- Bring more employers
- Invite new referrers
- Post your jobs
♻️ Repeat
Congratulations on becoming a WIP Believer! You're now part of a community that values professional connections and helps monetize professional networks effectively. You represent those who understand WIP's mission of restoring accountability and trust in hiring. WIP is here to help you monetize your network!
💰 Verify your identity to boost your chances of getting a Bounty
Verified referrals offer an unparalleled level of trustworthiness with recruiters. They demonstrate your commitment to vouch for the candidate and eliminate the need for recruiters to verify the referral. This results in reduced workload for recruiters, who will gladly acknowledge and reward your efforts!
🎉 Your credentials and ID was verified successfully!
🚀 You are now a trusted WIP user! Hooray!
#️⃣ ID_check reference #: vs_1Q0jP2RoXNdImsO7yqsV2kiA
🔒 All personal details are securely handled by Stripe
👉 Refer
- Verify your identity
- Explore all job openings
- Check your referral status
💰 Earn
- Bring more employers
- Invite new referrers
- Post your jobs
♻️ Repeat
WIP (Work Identity Protocol)
//super-embed:
<script>
const DEFAULT_AVATAR = "https://upload.wikimedia.org/wikipedia/commons/7/7c/Profile_avatar_placeholder_large.png";
const PROFILE_LINK = "https://wip101.outseta.com/profile?#o-authenticated";
function insertNotionIcon(imgUrl) {
const iconSlot = document.querySelector('.notion-header__icon-wrapper.has-cover.has-icon > div');
if (!iconSlot) return;
iconSlot.innerHTML = '';
const img = document.createElement('img');
img.src = imgUrl;
img.alt = 'Profile image';
img.style.width = "100px";
img.style.height = "100px";
img.style.borderRadius = "12px";
img.style.border = "2px solid #684BFF";
img.style.objectFit = "cover";
iconSlot.appendChild(img);
}
function insertMissingAvatarText() {
const title = document.querySelector('.notion-header__title');
if (!title || title.closest('.notion-header__title-wrapper') == null) return;
const wrapper = title.closest('.notion-header__title-wrapper');
const note = document.createElement('p');
note.innerHTML = `Please, add photo to <a href="${PROFILE_LINK}" target="_blank" style="color: #684BFF; text-decoration: underline;">your WIP profile</a>.`;
note.style.marginTop = '12px';
note.style.fontSize = '0.95em';
note.style.color = '#333';
wrapper.appendChild(note);
}
document.addEventListener('DOMContentLoaded', function () {
if (typeof Outseta !== 'undefined') {
Outseta.getUser()
.then(user => {
const avatarUrl = user?.ProfileImageS3Url || "";
const imgToUse = avatarUrl || DEFAULT_AVATAR;
insertNotionIcon(imgToUse);
if (!avatarUrl) {
insertMissingAvatarText();
}
})
.catch(() => {
insertNotionIcon(DEFAULT_AVATAR);
insertMissingAvatarText();
});
} else {
insertNotionIcon(DEFAULT_AVATAR);
insertMissingAvatarText();
}
});
</script>