Skip to content

Pricing Strategy

Last Updated: 2026-02-19 Purpose: Optimal pricing structure for urWhats to compete in Saudi/GCC market


File: src/config/static-plans.config.ts

PlanMonthlyYearlyStatus
Free0 SAR0 SARHidden (filtered out in DynamicPlans.astro)
Pro299 SAR2,999 SARShown, marked “recommended”
Ultimate499 SAR4,999 SARShown

Problems with current setup:

  1. Only 2 visible plans — no entry point for smaller businesses, no enterprise tier
  2. “Pro” and “Ultimate” names don’t communicate value progression
  3. Feature limits are confusing (100 Team Members AND 3 Agents?)
  4. No Enterprise/custom option for large organizations
  5. “Choose Plan” buttons link to /contact instead of app.urwhats.com/register
  6. No SAR/USD currency toggle (need to serve both Saudi and international customers)

Implementation: SAR/USD toggle switch on pricing page

  • Default: SAR for Arabic pages, SAR for English pages (can default based on geo later)
  • Toggle: User can switch between SAR and USD
  • Exchange rate: Use fixed rate (1 USD = ~3.75 SAR) — update quarterly
  • Alpine.js already used for monthly/yearly toggle, extend for currency

Add a second toggle or dropdown for currency. Store both SAR and USD prices in static-plans.config.ts:

monthlyPriceSAR: 299,
monthlyPriceUSD: 79,
yearlyPriceSAR: 2499,
yearlyPriceUSD: 665,

CompetitorCheapest PlanMid PlanTop Plan
urWhats299 SAR (~$80)499 SAR (~$133)N/A
Unifonic~$499 (~1,870 SAR)CustomCustom
SleekFlowFree / $79 (~296 SAR)$299 (~1,121 SAR)Custom
Respond.io$79 (~296 SAR)$159 (~596 SAR)$279 (~1,046 SAR)
Wati$49 (~184 SAR)$99 (~371 SAR)Custom
Rasayel$150 (~562 SAR)$300 (~1,125 SAR)Custom

urWhats is price-competitive with international players and significantly cheaper than Unifonic (the main Saudi competitor).


AttributeSARUSD
Monthly Price299 SAR/mo$79/mo
Yearly Price2,499 SAR/yr (save 17%)$665/yr (save 17%)
Register URLapp.urwhats.com/register?planid=1
TargetSmall businesses, Salla stores, solo marketers
Agents3
Contacts5,000
Campaigns20/month
Template Bots3
Message Bots3
Bot Flows3
AI Prompts50
Canned Replies50
Conversations1,000
API AccessNo
WebhooksNo
SupportEmail (business hours)
BadgeNone
AttributeSARUSD
Monthly Price599 SAR/mo$159/mo
Yearly Price4,999 SAR/yr (save 30%)$1,333/yr (save 30%)
Register URLapp.urwhats.com/register?planid=2
TargetMid-market companies, agencies, growing e-commerce
Agents10
Contacts25,000
CampaignsUnlimited
Template Bots10
Message Bots10
Bot FlowsUnlimited
AI Prompts500
Canned Replies500
Conversations10,000
AI ChatbotChatGPT + Claude + Gemini
API AccessFull REST API
WebhooksYes
CRMAdvanced (Kanban, lead scoring)
SupportPriority (24h response)
Badge”Most Popular”
AttributeValue
NameEnterprise
Monthly PriceCustom (contact sales)
Contact URL/contact or app.urwhats.com/register?planid=3
TargetLarge organizations, government, banks
AgentsUnlimited
ContactsUnlimited
EverythingUnlimited
Dedicated APIYes
Custom IntegrationsYes
SLA99.9% uptime guarantee
SupportDedicated account manager
OnboardingWhite-glove setup
Badge”For Teams”

  1. src/config/static-plans.config.ts — Update plan definitions (3 plans)
  2. src/components/DynamicPlans.astro — Remove free plan filter, update button URLs to app.urwhats.com/register?planid=X
  3. public/assets/i18n/en.json — Update pricing section text, plan descriptions
  4. public/assets/i18n/ar.json — Arabic translations for pricing
  5. src/components/SEO.astro — Update offers in SoftwareApplication schema
  • Add feature comparison table (not just feature lists per plan)
  • Add “All plans include” section: Official Meta API, 14-day free trial, Salla integration, Arabic support
  • Add FAQ section specific to pricing (conversation-based pricing, overage charges, etc.)
  • Enterprise plan should have “Contact Sales” button linking to /contact
  • Growth and Business plans should link to app.urwhats.com/register?planid=X
  1. Growth at 299 SAR undercuts Unifonic (1,870 SAR) by 84% while matching SleekFlow Pro
  2. Business at 599 SAR is the sweet spot — more features than Respond.io ($279 = 1,046 SAR) at 43% less
  3. Enterprise custom captures government/large orgs that need SLA and dedicated support
  4. SAR pricing removes currency conversion friction for Saudi buyers
  5. Yearly discount (17-30%) incentivizes annual commitment
  6. 3 plans is the industry standard (Goldilocks effect: people choose the middle)