What Wag! actually does
Wag was founded in 2015 in Los Angeles and went public on NASDAQ (ticker: PET) in 2022. The platform provided on-demand and scheduled dog walking, boarding, drop-in visits, and training services. On July 21, 2025, Wag filed for Chapter 11 bankruptcy protection in Delaware (Case 25-11358), citing revenue declines of 16% to $70.5M in 2024 and 27.8% to $15.17M in Q1 2025. Existing equity was canceled; Retriever LLC (pre-packaged lender) became the sole voting class and is expected to receive 100% of new shares after reorganization.
At the time of bankruptcy, Wag held approximately 9% of the US pet-care marketplace versus Rover's 91% (per sidehustles.com). The effective commission structure — 20% from walkers plus $2.99/walk and $14.99/sitting charged to clients — created an approximately 40% combined platform take that eroded both sides of the marketplace.
The $149 Wag Pro lifetime membership for walkers and persistent app quality issues through 2024-2025 contributed to a service degradation cycle that the bankruptcy filing confirmed was irreversible at current economics. The Wag bankruptcy creates the clearest market vacuum in this category set.
On-demand dog walking
The flagship product: clients book a 30-minute walk via the app with an available walker in their area. Wag's instant-match algorithm is an Uber-style dispatch model — the nearest available walker receives the job request and has minutes to accept.
Real-time GPS walk tracking
During walks, the walker's GPS location is shared live with the owner through the app. Post-walk, an automatic report card with the route map, duration, and photos is sent to the owner. This transparency feature is Wag's most valued product feature per App Store reviews.
Photo proof and walk report cards
Walkers submit photos and notes during the service, automatically compiled into a report card sent to the owner. This documentation serves as both a quality signal and a safety record.
Scheduled boarding and drop-in visits
Beyond on-demand walks, Wag supports multi-night boarding and scheduled drop-in visits. These higher-value services drove the $14.99 sitting booking fee that contributed to the 40% effective commission complaint.
Walker profiles with background checks
Wag Pro membership ($149 lifetime) unlocks access to the walker job market and includes a background check. Walkers create profiles with service types, availability, and reviews from previous jobs.
Wag!pricing & limits
A walker earning $2,000/month gross pays ~$400/month in commission plus clients pay $2.99 per walk on top — combined 40% effective platform cost per transaction
Where Wag! falls short
~40% effective commission drove the platform into bankruptcy
Wag's combined ~40% take rate (20% from walkers + $2.99-14.99 from owners) is the highest in the pet-care space and was explicitly cited as unsustainable in community analysis (scritches.io, sidehustles.com). The high commission reduced walker earnings to below-minimum-wage levels for low-density routes, driving quality walkers to Rover (20% commission) or direct client relationships.
Chapter 11 bankruptcy creates uncertainty for current users
Wag's July 21, 2025 bankruptcy filing (Delaware Case 25-11358) and NASDAQ delisting (trading suspended July 30, 2025, moved to OTC Pink as PETXQ) means walkers accepting new jobs have no certainty that earned commissions will be paid during the restructuring period. Existing equity holders received nothing; Retriever LLC absorbed 100% of post-reorganization equity.
No verification of pet owners — walkers bear all risk
Wag conducts background checks on walkers but not on pet owners, meaning walkers accept jobs from unknown clients at unknown locations with no identity validation. Community reports document incidents of fraudulent bookings, aggressive dogs misrepresented as gentle, and unsafe home environments that walkers had no way to screen in advance.
Revenue down 16% YoY in 2024, -27.8% in Q1 2025
Wag's revenue declined from approximately $84M in 2023 to $70.5M in 2024 and $15.17M in Q1 2025 — an accelerating collapse that preceded the Chapter 11 filing. This represents a structural failure, not a temporary downturn, indicating the business model could not sustain itself at the current fee structure and operational costs.
Low job availability outside major cities
Wag's network effects were concentrated in the top 20 US metros, leaving walkers and owners in second-tier cities with thin booking volume. A walker in a mid-size city might receive 1-3 job requests per week versus 10-20 in New York or Los Angeles — insufficient to earn a meaningful income from the platform.
Key features to replicate
The core feature set any Wag! alternative needs — plus what you can improve on.
On-demand and scheduled dog walking booking
Two booking modes: on-demand (available now, within 2 hours) and scheduled (book for a future date/time). On-demand requires real-time walker availability tracking and a push notification system to available walkers. Scheduled bookings use a standard calendar interface. Build on-demand dispatch using Supabase Realtime to broadcast job requests to nearby available walkers — first to accept gets the job.
Real-time GPS walk tracking with live map
The highest-value trust feature: owner views walker's live GPS location during the walk. Requires native mobile app (React Native + Expo) for background GPS access on the walker side. Supabase Realtime broadcasts location updates to the owner's app every 10-15 seconds. Post-walk route stored as coordinate array for report card map generation.
Photo proof and walk report cards
Walker submits 1-3 photos and optional notes during the walk via the app. Post-walk, the system auto-generates a report card: route map (Mapbox rendering of GPS coordinates), duration, photos, and notes. Send report card to owner via push notification and email (Resend) automatically on walk completion.
Walker profiles with background checks and reviews
Walker profiles include service types, hourly rates, service area, pet size limits, availability toggle, and verified reviews. Background check badge via Checkr API — runs automatically when walker signs up (cost covered by a setup fee or deducted from first earnings). Display check date and result (pass/fail) without disclosing details.
Instant matching algorithm for on-demand requests
When owner books on-demand, the system finds available walkers within service radius using PostGIS proximity query, ranks by rating and acceptance rate, sends push notification to top 3 walkers simultaneously. First to accept within 5 minutes gets the job. If no acceptance, notify next 3 walkers. Implement with BullMQ for job queue management and Supabase Realtime for real-time acceptance tracking.
Multi-service support — walking, sitting, boarding, drop-in
Different service types have different pricing, duration, and operational requirements. Walking = per-30-minute session; boarding = per-night with drop-off/pickup; drop-in = per-visit; daycare = per-day. Build a service catalog in Supabase with type-specific metadata (min/max duration, overnight flag, housing requirements) and walker service type declarations in their profile.
Pet profiles with health notes and care instructions
Owner creates profiles for each pet: name, species/breed, age, weight, vaccination status, medical conditions, feeding instructions, emergency vet contact, and behavioral notes. Pet profile is shared with the walker on booking confirmation. Store in JSONB for flexible attribute support across species. Allow owners to add care instruction updates per visit type.
Technical architecture
A Wag alternative is an on-demand geo-matched pet-care marketplace with real-time GPS tracking and Uber-style instant dispatch. The architectural complexity comes from the real-time matching engine (PostGIS + Supabase Realtime + BullMQ) and the GPS tracking mobile feature. A web-first MVP without GPS tracking reduces complexity from 7/10 to 5/10 — GPS tracking requires native mobile development and is the hardest single component.
Frontend — owner app
Next.js PWA, React Native (Expo), Flutter
Recommended: Next.js PWA for owner-facing web (booking, tracking, history) with a responsive mobile-first design. Owners mostly use the tracking and booking features which work well as a PWA. Add React Native (Expo) for owners when GPS tracking requires foreground location for map display.
Frontend — walker app (required for GPS)
React Native (Expo), Flutter, native iOS/Android
Recommended: React Native (Expo) is required for the walker app — background GPS access for walk tracking is not available in a web browser. Expo Location API handles background location with acceptable battery performance. Build walker web dashboard separately for profile management and earnings.
Database
Supabase (PostgreSQL + PostGIS), PlanetScale, Neon
Recommended: Supabase with PostGIS — walker service area proximity queries and real-time location updates via Supabase Realtime. The job dispatch system uses a bookings table with status state machine managed by BullMQ workers.
Auth
Supabase Auth, Clerk, NextAuth v5
Recommended: Supabase Auth for owner and walker roles. Walker onboarding includes Checkr background check API webhook — new walker accounts are set to 'pending' until background check passes. Owner verification: email + phone verification minimum.
Real-time dispatch and location
Supabase Realtime, Pusher, Ably
Recommended: Supabase Realtime for two channels: (1) Walker availability broadcasts for job dispatch — new job request triggers Supabase Realtime message to all available walkers in radius. (2) Walker GPS location updates during walks — coordinates written to walk_locations table, owner subscribes to updates.
Payments
Stripe Connect Express, Stripe Connect Custom
Recommended: Stripe Connect Express — owner pays at booking (hold), platform captures on walk start and transfers to walker's connected account after 48-hour dispute window. Set commission as the application_fee_amount on each payment intent. Lower commission (10-15%) versus Wag's ~40% as the primary marketing message.
Maps
Mapbox, Google Maps Platform, Leaflet + OpenStreetMap
Recommended: Mapbox GL JS for walk route display and walker proximity map. Mapbox's Directions API renders the actual walk path from GPS coordinates. Use OpenStreetMap with Leaflet for MVP to eliminate API costs while validating the product.
Complexity estimate
Complexity 7/10 for web + native mobile with GPS tracking. 5/10 without GPS (web-only, no real-time walk tracking). The instant-dispatch algorithm, real-time GPS broadcast, and walker mobile app make this significantly more complex than a simple booking platform.
Wag! vs building your own
Open-source Wag! alternatives
Existing projects you can self-host or use as a starting point. Each has trade-offs.
Cal.com
38K+An open-source scheduling platform (Next.js, TypeScript, AGPL-3.0) that covers the scheduled booking layer of a dog walking marketplace — walker availability management, appointment scheduling, and calendar sync for pre-booked walks.
Easy!Appointments
4.2KA PHP appointment scheduling system with service provider management. Suitable for scheduled dog walking bookings for small pet care businesses, less suitable for on-demand dispatch at scale.
Medusa.js
30K+A headless commerce engine (TypeScript, MIT) that serves as the payment and order management backbone. Stripe Connect integration and order state machine provide the commercial infrastructure for a pet-care marketplace.
Build vs buy: the real math
3-5 months
Custom build time
$40K-$80K
One-time investment
12-18 months
Breakeven vs Wag!
Wag's bankruptcy with $70.5M in 2024 revenue and approximately 9% market share suggests the addressable market at Wag's geography was roughly $780M/year. A custom platform capturing 1% of that market ($7.8M GMV/year) at a 12% take rate generates $936K/year. Against a $60K build cost and $12K/year hosting, breakeven is month 2 of reaching that market share level. The honest challenge: Wag's bankruptcy gives you a marketing narrative ('we built a better Wag') and a pool of displaced walkers and owners looking for alternatives, but the GPS tracking mobile app is a $20-30K investment that is required to compete with Rover. Build the web platform first, capture Wag's displaced users with the marketing narrative, then add the mobile GPS app once you have 50+ active walkers requesting it.
DIY roadmap: build it yourself
This roadmap covers building an on-demand dog walking marketplace for one metropolitan area, starting without GPS tracking mobile app (add in phase 5). Assumes one developer with Next.js, Supabase, and React Native experience.
Walker onboarding and profiles
2-3 weeks- Set up Next.js + Supabase with PostGIS and Stripe Connect Express
- Build walker signup: personal info, services offered, service ZIP codes/radius, rates, photo
- Implement Checkr API background check webhook on walker signup
- Build walker availability management: toggle active/inactive, service area definition
- Create walker profile pages with services, rates, reviews, and background check badge
- Recruit 20-30 walkers in target city before owner-facing launch
Owner booking and instant dispatch
3-4 weeks- Build owner pet profile creation (name, breed, weight, vaccination status, care notes)
- Build service booking form: service type, date/time (scheduled or on-demand), pet selection
- Implement PostGIS proximity query to find available walkers for on-demand requests
- Build push notification dispatch to top-3 nearby walkers (Supabase Realtime broadcast)
- Implement first-accept job assignment with 5-minute acceptance window
- Build Stripe PaymentIntent at booking with automatic capture on service completion
Walk tracking and report cards (web-only)
2-3 weeks- Build walker check-in/check-out flow for web (no GPS on web — use manual check-in for MVP)
- Implement photo upload during service via Supabase Storage
- Build report card generation: duration, photo count, check-in location (manual), optional notes
- Send report card to owner via Resend email with attached photos
- Build walk history dashboard for owners: past report cards, spending, upcoming bookings
- Implement post-walk review prompt to both owner and walker
SEO, growth, and Wag migration marketing
2-3 weeks- Build ISR pages: 'dog walking in [city/neighborhood]', 'pet sitter near [ZIP]'
- Publish 'Switch from Wag' landing page targeting displaced Wag users and walkers
- Implement referral program: walker refers another walker, both earn bonus on first completed job
- Build admin dashboard for job management, dispute resolution, and payout oversight
- Set up Google Search Console, Sentry, and Vercel Analytics
- Reach out to Wag walker communities (Reddit r/WagWalker, Facebook groups) with platform offer
GPS tracking requires native mobile development (React Native + Expo) — a $20-30K investment beyond the web platform. Build the web platform first and acquire initial walkers and owners without GPS. When walkers request GPS tracking (which they will, because owners ask for it), add the Expo app in a parallel sprint. Do not delay the web launch waiting for the GPS feature.
Features you can't get from Wag!
This is where a custom build pulls ahead — features impossible or impractical on a shared platform.
Direct Wag migration campaign with lower fees
Wag's Chapter 11 bankruptcy and Rover's 91% market share create a direct acquisition opportunity: displaced Wag walkers and owners are actively searching for alternatives. A platform launching in Q3-Q4 2025 with a 'switch from Wag' campaign, offering 10-15% commission versus Wag's ~40%, has a documented target audience actively searching for alternatives. This is a time-sensitive window that closes as the Wag walker community settles on Rover.
Owner verification with pet owner background checks
Neither Wag nor Rover verifies pet owners. A custom platform can require basic owner verification (email + phone at minimum, optional Stripe Identity for full ID check) and display an 'owner verified' badge to walkers. Walkers can filter available jobs to verified owners only, commanding a small premium. This is structurally impossible for Rover to replicate because it would change the terms for 91% of market bookings.
Subscription walk packages with predictable walker income
Wag and Rover process every walk as a separate transaction. A custom platform can offer monthly walk subscription packages: owner pays $199/month for 10 walks via Stripe Subscriptions, walker gets 10 scheduled jobs guaranteed each month at $18/walk (net of 10% commission). This eliminates the 40% effective commission complaint and gives walkers the income predictability they cannot get from on-demand platforms.
Neighborhood walker co-ops with shared coverage
A group of 3-5 walkers in the same neighborhood can form a co-op on the platform, sharing job coverage when individual walkers are unavailable. Owners see the co-op as a reliable source of coverage rather than individual walkers. Co-op walkers see guaranteed booking flow. This creates a network effect that is impossible to replicate on Rover or Wag's individual-walker model.
Automated walk safety check-in for evening and night walks
Evening and night dog walks create safety concerns for both walkers and owners. A custom platform can implement automated safety check-ins: walkers trigger a 'start walk' notification, and if the walk is not completed within 90 minutes of the scheduled end time, an automated alert is sent to the owner and a platform safety contact. This feature costs $0 to implement (a BullMQ scheduled job + Twilio SMS) and creates significant trust differentiation.
Vet and pet wellness integrations for health-aware pet care
Wag's platform is purely logistics — no health tracking, no vet integration, no medication reminders. A custom platform can add pet health tracking features: medication reminders sent to walkers at the appropriate time during visits, vet appointment integration (owner adds upcoming vet appointment, platform reminds walker to note any health observations), and wellness check prompts during drop-in visits. This creates a premium care tier that justifies slightly higher pricing versus commodity dog walking apps.
Who should build a custom Wag!
Dog walkers active on Wag or Rover seeking platform alternatives
Displaced Wag walkers are the easiest supply-side acquisition target in any category in 2025-2026. They are actively searching for alternatives, already have profiles and reviews on comparable platforms, and understand the dog walking marketplace model. Rover's 91% market share means the remaining 9% (Wag's users) are available to capture with a compelling fee structure.
Pet care entrepreneurs with existing client bases
A professional dog walker who already has 30-50 regular clients can bootstrap a platform by onboarding fellow walkers in their neighborhood. The existing client relationships provide immediate demand-side seeding, and the walker's reputation provides supply-side credibility. No cold-start problem when the founder already has both sides of the market.
Local pet services businesses expanding into app-enabled marketplace
A pet store, veterinary clinic, or pet grooming salon that already has customer trust and foot traffic can launch an affiliated dog walking marketplace as an additional revenue stream. The existing customer base provides immediate demand; the business's trust brand attracts walkers who want association with a known local brand rather than an anonymous app.
Skip the DIY — let RapidDev build it
Everything above is doable — but it takes months of full-time work. We build custom Wag! alternatives using AI-accelerated development, delivering in weeks what used to take quarters.
Discovery call (free)
30 minWe map your exact requirements: which Wag! features you need, what custom features to add, your users, integrations, and compliance needs. You get a detailed scope document and fixed-price quote within 48 hours.
AI-accelerated build
3-5 monthsOur engineers use Claude Code, Lovable, and custom AI tooling to build 3–5x faster than traditional development. You see progress in a staging environment every week — not a black box for months.
Launch + handoff
1 weekWe deploy to your infrastructure, transfer the GitHub repo, set up CI/CD, and walk your team through the codebase. You own 100% of the source code — no vendor lock-in, no recurring platform fees.
What you get
Timeline
3-5 months
Investment
$40K-$80K
vs Wag!
ROI in 12-18 months
30-min call. Fixed-price quote within 48 hours. No commitment.
Frequently asked questions
How much does it cost to build a Wag alternative?
A web-first dog walking marketplace costs $40-80K with a development agency. Adding a native mobile app with real-time GPS tracking increases the total to $60-100K. Core cost drivers are Stripe Connect payments ($10-15K), PostGIS geo-matching and dispatch ($10-15K), Checkr background checks ($5-8K), and the React Native GPS tracking app ($20-30K).
How long does it take to build a Wag clone?
3-5 months for a web-first platform without GPS tracking. This covers walker onboarding and background checks, on-demand dispatch, owner booking, Stripe Connect payments, and basic photo reporting. Adding the React Native walker app with background GPS tracking extends the timeline by 6-8 weeks.
Are there open-source Wag alternatives?
No purpose-built open-source dog walking marketplace exists. Cal.com (38K+ stars, AGPL-3.0) handles scheduled bookings, Easy!Appointments (4.2K stars, GPL-3.0) handles appointment booking, and Medusa.js (30K+ stars, MIT) handles the payment layer. GPS tracking for walks has no open-source implementation in the pet-care context.
Is now a good time to build a Wag alternative given the bankruptcy?
Yes — the bankruptcy creates a specific market window. Wag's displaced walkers and owners are actively seeking alternatives between Q3 2025 and Q1 2026. A platform that launches in this window with a 'switch from Wag' campaign, lower fees (10-15% vs. ~40%), and functional GPS tracking will capture users who are already motivated to switch. This window closes as users settle on Rover or other alternatives.
What commission structure should I use to compete with Wag and Rover?
10-12% from walkers only (no owner booking fee) is the most compelling structure: it eliminates the double-dipping complaint, makes the economics transparent, and is less than half of Wag's ~40% and significantly below Rover's 20-25%. At $200K GMV/month at a 10% take rate, that's $20K/month in revenue — enough to cover hosting, support, and partial development cost. Implement a $0 owner fee until you have 50+ active walkers and demand exceeds supply.
Do I need GPS tracking to compete with Rover?
GPS tracking is Rover's most valued trust feature and owners will ask for it. Build the web platform first — a 30-day delay for GPS validation is better than a 3-month delay building GPS before validating the marketplace. When 20+ walkers are active and 50+ owners are asking for GPS tracking, invest in the Expo mobile app. The web platform can launch with photo check-ins and manual walk duration as a short-term substitute.
Can RapidDev build a custom Wag alternative?
Yes. RapidDev has built 600+ applications including real-time geo-matched marketplaces with Stripe Connect, Supabase Realtime dispatch, and React Native mobile apps. A web-first dog walking marketplace takes 3-5 months at $40-80K; adding GPS mobile app takes an additional 6-8 weeks. Book a free consultation at rapidevelopers.com/contact.
How do I handle pet injuries or incidents on my platform?
Three layers: (1) Require walkers to carry their own pet sitter liability insurance ($150-200/yr via Pet Sitters Associates or PCI). Display insurance verification badge on profiles. (2) Implement a documented incident reporting flow in the app — photo upload, description, timestamp — creating an evidence record for any claim. (3) Include clear liability terms in walker and owner terms of service. Never promise platform-funded insurance coverage without an insurance partner willing to underwrite it — Wag's guarantee program was cited as difficult to use in practice.
We'll build your Wag!
- Delivered in 3-5 months
- You own 100% of the code
- No per-seat fees, ever
30-min call. No commitment.