Dog Walking Service Calculator

Give your dog walking business a professional edge with an interactive pricing calculator. This template helps pet owners get instant estimates based on walk duration (15-60 minutes), number of dogs, dog size and energy level, walk type (neighborhood, park, trail), and add-on services like photo updates, GPS tracking, or feeding. Offer frequency discounts to encourage recurring bookings. Visitors who see transparent pricing are more likely to book - capture their details and grow your client base.

Pets & AnimalsPopular

Try the Calculator

Dog Walking Price Calculator
๐Ÿ“ Your Location
Loading map...
 
๐Ÿ“ Enter address to check service area
๐Ÿ• Your Dog
 
๐Ÿšถ Walk Options
 
๐Ÿ“… Schedule
 
โœจ Add-on Services

๐Ÿ’ฐ Your Quote
$ 24.00
+
$ 0.00
+
$ 0.00
+
$ 2.00
$ 0.00
+
$ 0.00
/walk
๐Ÿงพ Summary
$ 26.00
/walk
First walk includes a free meet & greet.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
export function dogWalkingCalculator(form: FormTs) {
// Walk duration base prices
const walkPrices: Record<string, number> = {
'15': 15,
'30': 22,
'45': 30,
'60': 38
};
 
// Dog size adjustments
const sizeAdjustments: Record<string, number> = {
'small': 0,
'medium': 2,
'large': 4,
'giant': 6
};
 
// Frequency discounts (percentage)
const frequencyDiscounts: Record<string, number> = {
'once': 0,
'2-3': 5,
'4-5': 10,
'daily': 15
};
 
form.addRow(row => {
row.addTextPanel('header', {
computedValue: () => 'Dog Walking Price Calculator',
customStyles: { 'font-size': '1.5rem', 'font-weight': '600', 'color': '#1e293b' }
});
});
 
form.addSpacer({ height: 20 });
 
// Service Location Section
const locationSection = form.addSubform('serviceLocation', { title: '๐Ÿ“ Your Location' });
 
locationSection.addRow(row => {
row.addAddress('pickupAddress', {
label: 'Pickup Address',
placeholder: 'Enter your address...',
showMap: true,
showDistance: true,
referenceAddress: {
formattedAddress: 'Service Center, Denver, CO',
coordinates: { lat: 39.7392, lng: -104.9903 }
},
restrictToCountries: ['US', 'CA'],
distanceUnit: 'miles',
isRequired: true
});
});
 
locationSection.addRow(row => {
row.addTextPanel('serviceAreaInfo', {
computedValue: () => {
const addressField = locationSection.address('pickupAddress');
const miles = addressField?.distance();
if (miles == null) return '๐Ÿ“ Enter address to check service area';
if (miles <= 5) return '๐Ÿ“ Within service area - No travel fee';
if (miles <= 10) return '๐Ÿ“ Extended area - $5 travel fee per walk';
if (miles <= 15) return '๐Ÿ“ Remote area - $10 travel fee per walk';
return '๐Ÿ“ Outside service area - Please contact us';
},
customStyles: { 'font-size': '0.9rem', 'color': '#7c3aed', 'background': '#ede9fe', 'padding': '10px', 'border-radius': '6px' }
});
});
 
// Dog Details Section
const dogSection = form.addSubform('dogDetails', { title: '๐Ÿ• Your Dog' });
 
dogSection.addRow(row => {
row.addInteger('numberOfDogs', {
label: 'Number of Dogs',
min: 1,
max: 4,
defaultValue: 1,
isRequired: true,
tooltip: 'Maximum 4 dogs per walk'
}, '1fr');
row.addDropdown('dogSize', {
label: 'Dog Size',
options: [
{ id: 'small', name: 'Small (under 20 lbs)' },
{ id: 'medium', name: 'Medium (20-50 lbs)' },
{ id: 'large', name: 'Large (50-90 lbs)' },
{ id: 'giant', name: 'Giant (90+ lbs)' }
],
defaultValue: 'medium',
isRequired: true
}, '1fr');
});
 
dogSection.addRow(row => {
row.addDropdown('energyLevel', {
label: 'Energy Level',
options: [
{ id: 'low', name: 'Low (senior, calm)' },
{ id: 'medium', name: 'Medium (moderate activity)' },
{ id: 'high', name: 'High (very active, puppy)' }
],
defaultValue: 'medium',
tooltip: 'High energy dogs may need longer walks'
}, '1fr');
row.addDropdown('specialNeeds', {
label: 'Special Needs',
options: [
{ id: 'none', name: 'None' },
{ id: 'leash-reactive', name: 'Leash Reactive (+$5)' },
{ id: 'medical', name: 'Medical Needs (+$5)' },
{ id: 'puppy', name: 'Puppy Training (+$8)' }
],
defaultValue: 'none'
}, '1fr');
});
 
// Walk Options Section
const walkSection = form.addSubform('walkOptions', { title: '๐Ÿšถ Walk Options' });
 
walkSection.addRow(row => {
row.addRadioButton('walkDuration', {
label: 'Walk Duration',
options: [
{ id: '15', name: '15 Minutes (Quick potty break)' },
{ id: '30', name: '30 Minutes (Standard walk)' },
{ id: '45', name: '45 Minutes (Extended walk)' },
{ id: '60', name: '60 Minutes (Adventure walk)' }
],
defaultValue: '30',
orientation: 'vertical',
isRequired: true
});
});
 
walkSection.addRow(row => {
row.addDropdown('walkType', {
label: 'Walk Type',
options: [
{ id: 'neighborhood', name: 'Neighborhood Walk' },
{ id: 'park', name: 'Park Walk (+$5)' },
{ id: 'trail', name: 'Trail/Nature Walk (+$10)' },
{ id: 'beach', name: 'Beach Walk (+$15)' }
],
defaultValue: 'neighborhood',
isRequired: true
}, '1fr');
row.addDropdown('timeSlot', {
label: 'Preferred Time',
options: [
{ id: 'morning', name: 'Morning (7am-11am)' },
{ id: 'midday', name: 'Midday (11am-2pm)' },
{ id: 'afternoon', name: 'Afternoon (2pm-5pm)' },
{ id: 'evening', name: 'Evening (5pm-8pm) (+$3)' }
],
defaultValue: 'midday'
}, '1fr');
});
 
// Frequency Section
const frequencySection = form.addSubform('frequency', { title: '๐Ÿ“… Schedule' });
 
frequencySection.addRow(row => {
row.addRadioButton('frequency', {
label: 'How often?',
options: [
{ id: 'once', name: 'One-time / On-call' },
{ id: '2-3', name: '2-3 times per week (-5%)' },
{ id: '4-5', name: '4-5 times per week (-10%)' },
{ id: 'daily', name: 'Daily walks (-15%)' }
],
defaultValue: 'once',
orientation: 'vertical',
isRequired: true
});
});
 
frequencySection.addRow(row => {
row.addInteger('weeksPerMonth', {
label: 'Weeks per Month',
min: 1,
max: 5,
defaultValue: 4,
tooltip: 'For monthly cost calculation',
isVisible: () => frequencySection.radioButton('frequency')?.value() !== 'once'
}, '1fr');
});
 
// Add-ons Section
const addonsSection = form.addSubform('addons', { title: 'โœจ Add-on Services' });
 
addonsSection.addRow(row => {
row.addCheckbox('photoUpdates', {
label: 'Photo Updates (+$2)',
defaultValue: true,
tooltip: 'Receive photos during the walk'
}, '1fr');
row.addCheckbox('gpsTracking', {
label: 'GPS Route Tracking (+$3)',
defaultValue: false,
tooltip: 'Share walk route and stats'
}, '1fr');
});
 
addonsSection.addRow(row => {
row.addCheckbox('feeding', {
label: 'Feeding Service (+$5)',
defaultValue: false,
tooltip: 'Feed your dog during visit'
}, '1fr');
row.addCheckbox('playtime', {
label: 'Extra Playtime (+$8)',
defaultValue: false,
tooltip: '15 min of play/training after walk'
}, '1fr');
});
 
addonsSection.addRow(row => {
row.addCheckbox('freshWater', {
label: 'Fresh Water Refill (+$2)',
defaultValue: false
}, '1fr');
row.addCheckbox('medicationAdmin', {
label: 'Medication Administration (+$5)',
defaultValue: false,
tooltip: 'Administer prescribed medication'
}, '1fr');
});
 
form.addSpacer({ height: 20, showLine: true, lineStyle: 'dashed' });
 
// Helper to calculate travel fee per walk
const getTravelFeePerWalk = () => {
const addressField = locationSection.address('pickupAddress');
const miles = addressField?.distance();
if (miles == null || miles <= 5) return 0;
if (miles <= 10) return 5;
if (miles <= 15) return 10;
return 15;
};
 
// Price Summary Section
const summarySection = form.addSubform('summary', { title: '๐Ÿ’ฐ Your Quote', isCollapsible: false });
 
summarySection.addRow(row => {
row.addPriceDisplay('basePrice', {
label: 'Base Walk Price',
computedValue: () => {
const duration = walkSection.radioButton('walkDuration')?.value() || '30';
const numDogs = dogSection.integer('numberOfDogs')?.value() || 1;
const size = dogSection.dropdown('dogSize')?.value() || 'medium';
 
const basePrice = walkPrices[duration] || 22;
const sizeAdj = sizeAdjustments[size] || 0;
const additionalDogs = Math.max(0, numDogs - 1) * (basePrice * 0.5);
 
return basePrice + sizeAdj + additionalDogs;
},
variant: 'default'
}, '1fr');
row.addPriceDisplay('walkExtras', {
label: 'Walk Type & Time',
computedValue: () => {
const walkType = walkSection.dropdown('walkType')?.value() || 'neighborhood';
const timeSlot = walkSection.dropdown('timeSlot')?.value() || 'midday';
 
let extra = 0;
if (walkType === 'park') extra += 5;
if (walkType === 'trail') extra += 10;
if (walkType === 'beach') extra += 15;
if (timeSlot === 'evening') extra += 3;
 
return extra;
},
variant: 'default',
prefix: '+'
}, '1fr');
});
 
summarySection.addRow(row => {
row.addPriceDisplay('specialNeedsPrice', {
label: 'Special Care',
computedValue: () => {
const specialNeeds = dogSection.dropdown('specialNeeds')?.value() || 'none';
if (specialNeeds === 'leash-reactive') return 5;
if (specialNeeds === 'medical') return 5;
if (specialNeeds === 'puppy') return 8;
return 0;
},
variant: 'default',
prefix: '+'
}, '1fr');
row.addPriceDisplay('addonsTotal', {
label: 'Add-ons',
computedValue: () => {
let total = 0;
if (addonsSection.checkbox('photoUpdates')?.value()) total += 2;
if (addonsSection.checkbox('gpsTracking')?.value()) total += 3;
if (addonsSection.checkbox('feeding')?.value()) total += 5;
if (addonsSection.checkbox('playtime')?.value()) total += 8;
if (addonsSection.checkbox('freshWater')?.value()) total += 2;
if (addonsSection.checkbox('medicationAdmin')?.value()) total += 5;
return total;
},
variant: 'default',
prefix: '+'
}, '1fr');
});
 
summarySection.addRow(row => {
row.addPriceDisplay('frequencyDiscount', {
label: 'Frequency Discount',
computedValue: () => {
const frequency = frequencySection.radioButton('frequency')?.value() || 'once';
const discountPercent = frequencyDiscounts[frequency] || 0;
 
if (discountPercent === 0) return 0;
 
// Calculate subtotal
const duration = walkSection.radioButton('walkDuration')?.value() || '30';
const numDogs = dogSection.integer('numberOfDogs')?.value() || 1;
const size = dogSection.dropdown('dogSize')?.value() || 'medium';
const walkType = walkSection.dropdown('walkType')?.value() || 'neighborhood';
const timeSlot = walkSection.dropdown('timeSlot')?.value() || 'midday';
const specialNeeds = dogSection.dropdown('specialNeeds')?.value() || 'none';
 
let subtotal = walkPrices[duration] || 22;
subtotal += sizeAdjustments[size] || 0;
subtotal += Math.max(0, numDogs - 1) * ((walkPrices[duration] || 22) * 0.5);
if (walkType === 'park') subtotal += 5;
if (walkType === 'trail') subtotal += 10;
if (walkType === 'beach') subtotal += 15;
if (timeSlot === 'evening') subtotal += 3;
if (specialNeeds === 'leash-reactive') subtotal += 5;
if (specialNeeds === 'medical') subtotal += 5;
if (specialNeeds === 'puppy') subtotal += 8;
 
return -(subtotal * discountPercent / 100);
},
variant: 'success',
prefix: ''
}, '1fr');
});
 
summarySection.addRow(row => {
row.addPriceDisplay('travelFee', {
label: 'Travel Fee',
computedValue: () => getTravelFeePerWalk(),
variant: 'default',
prefix: '+',
suffix: '/walk'
});
});
 
const finalSection = form.addSubform('final', {
title: '๐Ÿงพ Summary',
isCollapsible: false,
sticky: 'bottom'
});
 
finalSection.addRow(row => {
row.addPriceDisplay('perWalkPrice', {
label: 'Price Per Walk',
computedValue: () => {
const duration = walkSection.radioButton('walkDuration')?.value() || '30';
const numDogs = dogSection.integer('numberOfDogs')?.value() || 1;
const size = dogSection.dropdown('dogSize')?.value() || 'medium';
const walkType = walkSection.dropdown('walkType')?.value() || 'neighborhood';
const timeSlot = walkSection.dropdown('timeSlot')?.value() || 'midday';
const specialNeeds = dogSection.dropdown('specialNeeds')?.value() || 'none';
const frequency = frequencySection.radioButton('frequency')?.value() || 'once';
 
// Base calculation
let total = walkPrices[duration] || 22;
total += sizeAdjustments[size] || 0;
total += Math.max(0, numDogs - 1) * ((walkPrices[duration] || 22) * 0.5);
 
// Walk extras
if (walkType === 'park') total += 5;
if (walkType === 'trail') total += 10;
if (walkType === 'beach') total += 15;
if (timeSlot === 'evening') total += 3;
 
// Special needs
if (specialNeeds === 'leash-reactive') total += 5;
if (specialNeeds === 'medical') total += 5;
if (specialNeeds === 'puppy') total += 8;
 
// Add-ons
if (addonsSection.checkbox('photoUpdates')?.value()) total += 2;
if (addonsSection.checkbox('gpsTracking')?.value()) total += 3;
if (addonsSection.checkbox('feeding')?.value()) total += 5;
if (addonsSection.checkbox('playtime')?.value()) total += 8;
if (addonsSection.checkbox('freshWater')?.value()) total += 2;
if (addonsSection.checkbox('medicationAdmin')?.value()) total += 5;
 
// Frequency discount
const discountPercent = frequencyDiscounts[frequency] || 0;
total = total * (1 - discountPercent / 100);
 
// Travel fee
total += getTravelFeePerWalk();
 
return Math.round(total * 100) / 100;
},
variant: 'large',
suffix: '/walk'
}, '1fr');
row.addPriceDisplay('monthlyEstimate', {
label: 'Monthly Estimate',
computedValue: () => {
const frequency = frequencySection.radioButton('frequency')?.value() || 'once';
if (frequency === 'once') return 0;
 
const weeksPerMonth = frequencySection.integer('weeksPerMonth')?.value() || 4;
let walksPerWeek = 1;
if (frequency === '2-3') walksPerWeek = 2.5;
if (frequency === '4-5') walksPerWeek = 4.5;
if (frequency === 'daily') walksPerWeek = 7;
 
// Calculate per-walk price
const duration = walkSection.radioButton('walkDuration')?.value() || '30';
const numDogs = dogSection.integer('numberOfDogs')?.value() || 1;
const size = dogSection.dropdown('dogSize')?.value() || 'medium';
const walkType = walkSection.dropdown('walkType')?.value() || 'neighborhood';
const timeSlot = walkSection.dropdown('timeSlot')?.value() || 'midday';
const specialNeeds = dogSection.dropdown('specialNeeds')?.value() || 'none';
 
let perWalk = walkPrices[duration] || 22;
perWalk += sizeAdjustments[size] || 0;
perWalk += Math.max(0, numDogs - 1) * ((walkPrices[duration] || 22) * 0.5);
if (walkType === 'park') perWalk += 5;
if (walkType === 'trail') perWalk += 10;
if (walkType === 'beach') perWalk += 15;
if (timeSlot === 'evening') perWalk += 3;
if (specialNeeds === 'leash-reactive') perWalk += 5;
if (specialNeeds === 'medical') perWalk += 5;
if (specialNeeds === 'puppy') perWalk += 8;
 
if (addonsSection.checkbox('photoUpdates')?.value()) perWalk += 2;
if (addonsSection.checkbox('gpsTracking')?.value()) perWalk += 3;
if (addonsSection.checkbox('feeding')?.value()) perWalk += 5;
if (addonsSection.checkbox('playtime')?.value()) perWalk += 8;
if (addonsSection.checkbox('freshWater')?.value()) perWalk += 2;
if (addonsSection.checkbox('medicationAdmin')?.value()) perWalk += 5;
 
const discountPercent = frequencyDiscounts[frequency] || 0;
perWalk = perWalk * (1 - discountPercent / 100);
 
// Add travel fee
perWalk += getTravelFeePerWalk();
 
return Math.round(perWalk * walksPerWeek * weeksPerMonth);
},
variant: 'default',
suffix: '/month',
isVisible: () => frequencySection.radioButton('frequency')?.value() !== 'once'
}, '1fr');
});
 
finalSection.addRow(row => {
row.addTextPanel('disclaimer', {
computedValue: () => 'First walk includes a free meet & greet.',
customStyles: { 'font-size': '0.85rem', 'color': '#64748b', 'font-style': 'italic' }
});
});
 
form.configureSubmitButton({
label: 'Book a Walk'
});
}
 

Frequently Asked Questions

Can I customize the pricing for my area?

Absolutely. All base prices, per-dog rates, add-on costs, and frequency discounts are fully customizable. You can adjust everything to match your local market rates and business model.

Can I add my own walk types or add-on services?

Yes. You can add custom walk types (like 'Running' or 'Swimming'), create new add-on services, remove options you don't offer, and set your own pricing for each.

How do frequency discounts work?

The calculator offers discounts for recurring clients - 5% for 2-3 walks per week, 10% for 4-5 walks, and 15% for daily service. You can adjust these percentages or add different tiers.

Can I handle multiple dogs with different pricing?

Yes. The calculator supports up to 4 dogs per walk with additional dog pricing. You can customize the per-additional-dog rate to match your policy.

How does this help my dog walking business?

Interactive calculators engage visitors and increase bookings. Pet owners who see personalized pricing are more likely to commit. The submit button captures their contact info for follow-up.