The Pure, Kosher Messenger Built for Our Community.
Escape the secular algorithms and unvetted channels of generic commercial chat apps. Vutsapp delivers fast, end-to-end secured messaging, free SMS to any phone number, rich community group tools, and complete halachic integrity backed by database-level security.
Why Vutsapp Sets a New Gold Standard
Mainstream corporate messengers were engineered for general commercial audiences—often prioritizing engagement algorithms, secular trends, and advertising over privacy and kedusha. Here is how Vutsapp is built differently.
Zero Unwanted Secular Content
Generic global apps push public explore tabs, influencer channels, celebrity updates, and algorithmic discovery designed to keep you scrolling through inappropriate material.
Block Anything You Don't Like
You own your communication space. Block any user, silence specific groups, lock media downloads strictly to verified mutual contacts, and filter status updates based on gender or custom privacy settings.
Free SMS to Any Phone Number
Many of our parents, grandparents, and community members carry kosher flip phones or devices without app stores. Vutsapp allows you to message any phone number worldwide via carrier SMS completely free.
The Ultimate Platform for Groups
From large shul announcements to yeshiva alumni cohorts, neighborhood gemachs, and family chats, Vutsapp provides multi-level community hierarchies, announcement-only broadcast modes, and verified moderation.
Full API for All Actions & Status
Integrate your shul's zmanim bot, automated donation receipts, school emergency broadcasts, or CRM notifications with our first-class REST API v1 using secure API keys or OAuth tokens.
Made for Yidden by a Yid
Built from scratch with yiras Shamayim. Automated Shabbos-mode notifications, Hebcal-integrated local zmanim, Hebrew calendar support, and tzniut visibility toggles enforced at the Postgres database layer.
The Premier Messenger for Groups & Shuls
Most chat apps treat groups like an afterthought—a noisy room with random spam. Vutsapp was built from the ground up for the structured hierarchy of Jewish communal life.
Shuls & Batei Medrash
Broadcast minyan times, shiur updates, gabbai announcements, and aliyah schedules without members replying with clutter.
- Admin-only announcement channels
- Live audio shiur streaming (LiveKit)
- Yahrzeit commemorations & sponsorships
Neighborhoods & Communities
Organize your entire neighborhood: Crown Heights, Boro Park, Lakewood, Monsey, Jerusalem. Group channels under one parent community.
- Multi-tiered channel hierarchy
- Community directory with lookup controls
- Kosher community marketplace listings
Kosher Businesses & Gemachs
Serve your customers with verified business profiles, digital product catalogs, auto-replies, and order inquiry threads without paying exorbitant fees.
- Full catalog & product item showcases
- 300 requests/min API rate limit allowance
- Quick-replies & chat labels
Developer REST API for All Actions & Status
The first kosher messaging platform with an open, first-class developer API. Automate alerts, post status updates, send messages, and build custom bots with simple HTTPS requests authenticated by your personal Vutsapp API key (vk_...) or OAuth token.
# Send a message to a chat or SMS recipient via Vutsapp API v1
curl -X POST https://api.vutsapp.com/v1/messages \
-H "Authorization: Bearer vk_live_7f8a92bc3e01d4a" \
-H "Content-Type: application/json" \
-d '{
"recipient": "+17185550199",
"content": "Shabbat Shalom! Friday Mincha is scheduled for 6:45 PM.",
"is_sms_fallback": true
}'
# Post a kosher status update (ephemeral story) with gender privacy
curl -X POST https://api.vutsapp.com/v1/status \
-H "Authorization: Bearer vk_live_7f8a92bc3e01d4a" \
-H "Content-Type: application/json" \
-d '{
"caption": "Mazel Tov on the birth of a baby boy to the Miller family!",
"visibility": "same_gender",
"expires_in_hours": 24
}'
import { VutsappClient } from '@vutsapp/sdk';
const client = new VutsappClient({
apiKey: process.env.VUTSAPP_API_KEY // 'vk_...'
});
// 1. Send free SMS / Kosher Chat message
await client.messages.send({
recipient: '+17185550199',
content: 'Shabbat Shalom from the community gabbai!',
allowSmsFallback: true
});
// 2. Broadcast a status update
await client.status.create({
caption: 'Daf Yomi shiur starts in 15 minutes.',
visibility: 'all'
});
import requests
headers = {
"Authorization": "Bearer vk_live_7f8a92bc3e01d4a",
"Content-Type": "application/json"
}
# Post announcement to shul community channel
payload = {
"channel_id": "shul_main_announcements",
"message": "Mincha: 6:45 PM. Maariv: 7:55 PM. Cholent kiddush following."
}
response = requests.post(
"https://api.vutsapp.com/v1/messages",
headers=headers,
json=payload
)
print(response.json())
Everything You Need to Know
Common questions regarding Vutsapp, kosher standards, free SMS, and our mission.
vk_... API key, select exact scopes (such as message:send, status:write, chat:read), and configure rate limits for your bots, shuls, or business automations.