Gutter Cleaning Calculator

Give your gutter cleaning business a competitive edge with an instant quote calculator. This tool helps homeowners understand cleaning costs based on linear feet of gutters, home height, debris level, and additional services. Convert more website visitors into qualified leads by providing transparent pricing upfront.

Home Services

Try the Calculator

Gutter Cleaning Quote
๐Ÿ  Home Details
Loading map...
 
๐Ÿ“ Enter address to calculate travel fee
 
๐Ÿ”ง Gutter Condition
โœจ Additional Services
 

๐Ÿ’ฐ Your Quote
$ 270.00
+
$ 0.00
+
$ 80.00
+
$ 0.00

$ 350.00
 
๐Ÿงพ Summary
$ 350.00
Final price confirmed after on-site assessment.
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
export function gutterCleaningCalculator(form: FormTs) {
// Base prices per linear foot
const basePricePerFoot = 1.50;
 
// Story height multipliers
const storyMultipliers: Record<string, number> = {
'single': 1.0,
'two': 1.3,
'three': 1.6,
'four-plus': 2.0
};
 
// Minimum charge
const minimumCharge = 100;
 
form.addRow(row => {
row.addTextPanel('header', {
computedValue: () => 'Gutter Cleaning Quote',
customStyles: { 'font-size': '1.5rem', 'font-weight': '600', 'color': '#1e293b' }
});
});
 
form.addSpacer({ height: 20 });
 
// Home Details Section
const homeSection = form.addSubform('homeDetails', { title: '๐Ÿ  Home Details' });
 
homeSection.addRow(row => {
row.addAddress('serviceAddress', {
label: 'Service Address',
placeholder: 'Enter property 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
});
});
 
homeSection.addRow(row => {
row.addTextPanel('travelZoneInfo', {
computedValue: () => {
const addressField = homeSection.address('serviceAddress');
const miles = addressField?.distance();
if (miles == null) return '๐Ÿ“ Enter address to calculate travel fee';
if (miles <= 15) return '๐Ÿ“ Within service area - No travel fee';
if (miles <= 30) return '๐Ÿ“ Extended area - $25 travel fee';
if (miles <= 50) return '๐Ÿ“ Remote area - $50 travel fee';
return '๐Ÿ“ Long distance - $75+ travel fee';
},
customStyles: { 'font-size': '0.9rem', 'color': '#0369a1', 'background': '#e0f2fe', 'padding': '10px', 'border-radius': '6px' }
});
});
 
homeSection.addRow(row => {
row.addInteger('linearFeet', {
label: 'Linear Feet of Gutters',
min: 50,
max: 1000,
defaultValue: 150,
placeholder: 'e.g. 150',
isRequired: true
}, '1fr');
row.addDropdown('stories', {
label: 'Number of Stories',
options: [
{ id: 'single', name: 'Single Story' },
{ id: 'two', name: 'Two Story (+30%)' },
{ id: 'three', name: 'Three Story (+60%)' },
{ id: 'four-plus', name: 'Four+ Story (+100%)' }
],
defaultValue: 'single',
isRequired: true
}, '1fr');
});
 
homeSection.addRow(row => {
row.addDropdown('roofType', {
label: 'Roof Type',
options: [
{ id: 'standard', name: 'Standard Pitch' },
{ id: 'steep', name: 'Steep Pitch (+20%)' },
{ id: 'flat', name: 'Flat/Low Pitch' },
{ id: 'complex', name: 'Complex/Multiple Levels (+30%)' }
],
defaultValue: 'standard'
}, '1fr');
row.addDropdown('accessibility', {
label: 'Accessibility',
options: [
{ id: 'easy', name: 'Easy (Clear ground access)' },
{ id: 'moderate', name: 'Moderate (Some obstacles, +15%)' },
{ id: 'difficult', name: 'Difficult (Landscaping, fences, +30%)' }
],
defaultValue: 'easy'
}, '1fr');
});
 
// Gutter Condition Section
const conditionSection = form.addSubform('gutterCondition', { title: '๐Ÿ”ง Gutter Condition' });
 
conditionSection.addRow(row => {
row.addDropdown('debrisLevel', {
label: 'Debris Level',
options: [
{ id: 'light', name: 'Light (Regular maintenance)' },
{ id: 'moderate', name: 'Moderate (Seasonal buildup, +20%)' },
{ id: 'heavy', name: 'Heavy (1+ year neglected, +40%)' },
{ id: 'extreme', name: 'Extreme (Packed/composted, +60%)' }
],
defaultValue: 'moderate',
isRequired: true
}, '1fr');
row.addDropdown('gutterType', {
label: 'Gutter Type',
options: [
{ id: 'standard', name: 'Standard K-Style' },
{ id: 'half-round', name: 'Half-Round (+10%)' },
{ id: 'box', name: 'Box Gutters (+20%)' },
{ id: 'copper', name: 'Copper (Premium care, +25%)' }
],
defaultValue: 'standard'
}, '1fr');
});
 
conditionSection.addRow(row => {
row.addCheckbox('hasGuards', {
label: 'Gutter guards installed (removal/reinstall +$3/ft)',
defaultValue: false
}, '1fr');
});
 
// Additional Services Section
const addonsSection = form.addSubform('addons', { title: 'โœจ Additional Services' });
 
addonsSection.addRow(row => {
row.addCheckbox('downspoutFlush', {
label: 'Downspout Flush (+$10 per downspout)',
defaultValue: true
}, '1fr');
row.addInteger('downspoutCount', {
label: 'Number of Downspouts',
min: 1,
max: 20,
defaultValue: 4,
isVisible: () => addonsSection.checkbox('downspoutFlush')?.value() === true
}, '1fr');
});
 
addonsSection.addRow(row => {
row.addCheckbox('minorRepairs', {
label: 'Minor Repairs (resealing, tightening) (+$75)',
defaultValue: false
}, '1fr');
row.addCheckbox('roofDebris', {
label: 'Roof Debris Removal (+$50)',
defaultValue: false
}, '1fr');
});
 
addonsSection.addRow(row => {
row.addCheckbox('inspection', {
label: 'Full Gutter System Inspection (+$35)',
defaultValue: false
}, '1fr');
row.addCheckbox('beforeAfterPhotos', {
label: 'Before/After Photo Documentation (+$15)',
defaultValue: false
}, '1fr');
});
 
addonsSection.addRow(row => {
row.addCheckbox('groundCleanup', {
label: 'Full Ground Cleanup (+$40)',
defaultValue: true
}, '1fr');
row.addCheckbox('scheduleMaintenance', {
label: 'Schedule Recurring Service (10% off next visit)',
defaultValue: false
}, '1fr');
});
 
form.addSpacer({ height: 20, showLine: true, lineStyle: 'dashed' });
 
// Helper to calculate travel fee
const getTravelFee = () => {
const addressField = homeSection.address('serviceAddress');
const miles = addressField?.distance();
if (miles == null || miles <= 15) return 0;
if (miles <= 30) return 25;
if (miles <= 50) return 50;
return 75 + Math.floor((miles - 50) / 10) * 10;
};
 
// Quote Summary Section
const summarySection = form.addSubform('summary', { title: '๐Ÿ’ฐ Your Quote', isCollapsible: false });
 
const getStoryMultiplier = () => {
const stories = homeSection.dropdown('stories')?.value() || 'single';
return storyMultipliers[stories] || 1.0;
};
 
const getRoofTypeMultiplier = () => {
const roofType = homeSection.dropdown('roofType')?.value() || 'standard';
const multipliers: Record<string, number> = {
'standard': 1.0,
'steep': 1.2,
'flat': 1.0,
'complex': 1.3
};
return multipliers[roofType] || 1.0;
};
 
const getAccessibilityMultiplier = () => {
const access = homeSection.dropdown('accessibility')?.value() || 'easy';
const multipliers: Record<string, number> = {
'easy': 1.0,
'moderate': 1.15,
'difficult': 1.3
};
return multipliers[access] || 1.0;
};
 
const getDebrisMultiplier = () => {
const debris = conditionSection.dropdown('debrisLevel')?.value() || 'moderate';
const multipliers: Record<string, number> = {
'light': 1.0,
'moderate': 1.2,
'heavy': 1.4,
'extreme': 1.6
};
return multipliers[debris] || 1.0;
};
 
const getGutterTypeMultiplier = () => {
const type = conditionSection.dropdown('gutterType')?.value() || 'standard';
const multipliers: Record<string, number> = {
'standard': 1.0,
'half-round': 1.1,
'box': 1.2,
'copper': 1.25
};
return multipliers[type] || 1.0;
};
 
summarySection.addRow(row => {
row.addPriceDisplay('baseCost', {
label: 'Base Cleaning Cost',
computedValue: () => {
const linearFeet = homeSection.integer('linearFeet')?.value() || 150;
const baseCost = linearFeet * basePricePerFoot;
const totalMultiplier = getStoryMultiplier() * getRoofTypeMultiplier() * getAccessibilityMultiplier() * getDebrisMultiplier() * getGutterTypeMultiplier();
return Math.max(Math.round(baseCost * totalMultiplier), minimumCharge);
},
variant: 'default'
}, '1fr');
row.addPriceDisplay('guardsCost', {
label: 'Gutter Guard Service',
computedValue: () => {
if (!conditionSection.checkbox('hasGuards')?.value()) return 0;
const linearFeet = homeSection.integer('linearFeet')?.value() || 150;
return linearFeet * 3;
},
variant: 'default',
prefix: '+'
}, '1fr');
});
 
summarySection.addRow(row => {
row.addPriceDisplay('addonsCost', {
label: 'Additional Services',
computedValue: () => {
let addons = 0;
if (addonsSection.checkbox('downspoutFlush')?.value()) {
const count = addonsSection.integer('downspoutCount')?.value() || 4;
addons += count * 10;
}
if (addonsSection.checkbox('minorRepairs')?.value()) addons += 75;
if (addonsSection.checkbox('roofDebris')?.value()) addons += 50;
if (addonsSection.checkbox('inspection')?.value()) addons += 35;
if (addonsSection.checkbox('beforeAfterPhotos')?.value()) addons += 15;
if (addonsSection.checkbox('groundCleanup')?.value()) addons += 40;
return addons;
},
variant: 'default',
prefix: '+'
}, '1fr');
row.addPriceDisplay('travelFee', {
label: 'Travel Fee',
computedValue: () => getTravelFee(),
variant: 'default',
prefix: '+'
}, '1fr');
});
 
summarySection.addSpacer({ showLine: true, lineStyle: 'solid', lineColor: '#e2e8f0' });
 
summarySection.addRow(row => {
row.addPriceDisplay('totalEstimate', {
label: 'Total Estimated Cost',
computedValue: () => {
const linearFeet = homeSection.integer('linearFeet')?.value() || 150;
 
// Base cost with all multipliers
const baseCost = linearFeet * basePricePerFoot;
const totalMultiplier = getStoryMultiplier() * getRoofTypeMultiplier() * getAccessibilityMultiplier() * getDebrisMultiplier() * getGutterTypeMultiplier();
let total = Math.max(baseCost * totalMultiplier, minimumCharge);
 
// Gutter guards
if (conditionSection.checkbox('hasGuards')?.value()) {
total += linearFeet * 3;
}
 
// Add-ons
if (addonsSection.checkbox('downspoutFlush')?.value()) {
const count = addonsSection.integer('downspoutCount')?.value() || 4;
total += count * 10;
}
if (addonsSection.checkbox('minorRepairs')?.value()) total += 75;
if (addonsSection.checkbox('roofDebris')?.value()) total += 50;
if (addonsSection.checkbox('inspection')?.value()) total += 35;
if (addonsSection.checkbox('beforeAfterPhotos')?.value()) total += 15;
if (addonsSection.checkbox('groundCleanup')?.value()) total += 40;
 
// Add travel fee
total += getTravelFee();
 
return Math.round(total);
},
variant: 'large'
});
});
 
summarySection.addRow(row => {
row.addTextPanel('recurringNote', {
computedValue: () => {
if (addonsSection.checkbox('scheduleMaintenance')?.value()) {
return 'Schedule recurring service and save 10% on your next visit!';
}
return '';
},
customStyles: { 'font-size': '0.9rem', 'color': '#059669', 'font-weight': '500' }
});
});
 
// Sticky Summary Section
const finalSection = form.addSubform('final', {
title: '๐Ÿงพ Summary',
isCollapsible: false,
sticky: 'bottom'
});
 
finalSection.addRow(row => {
row.addPriceDisplay('totalEstimate', {
label: 'Total Estimated Cost',
computedValue: () => {
const linearFeet = homeSection.integer('linearFeet')?.value() || 150;
 
const baseCost = linearFeet * basePricePerFoot;
const totalMultiplier = getStoryMultiplier() * getRoofTypeMultiplier() * getAccessibilityMultiplier() * getDebrisMultiplier() * getGutterTypeMultiplier();
let total = Math.max(baseCost * totalMultiplier, minimumCharge);
 
if (conditionSection.checkbox('hasGuards')?.value()) {
total += linearFeet * 3;
}
 
if (addonsSection.checkbox('downspoutFlush')?.value()) {
const count = addonsSection.integer('downspoutCount')?.value() || 4;
total += count * 10;
}
if (addonsSection.checkbox('minorRepairs')?.value()) total += 75;
if (addonsSection.checkbox('roofDebris')?.value()) total += 50;
if (addonsSection.checkbox('inspection')?.value()) total += 35;
if (addonsSection.checkbox('beforeAfterPhotos')?.value()) total += 15;
if (addonsSection.checkbox('groundCleanup')?.value()) total += 40;
 
// Add travel fee
total += getTravelFee();
 
return Math.round(total);
},
variant: 'large'
});
});
 
finalSection.addRow(row => {
row.addTextPanel('disclaimer', {
computedValue: () => 'Final price confirmed after on-site assessment.',
customStyles: { 'font-size': '0.85rem', 'color': '#94a3b8', 'font-style': 'italic' }
});
});
 
form.configureSubmitButton({
label: 'Get Free Quote'
});
}
 

Frequently Asked Questions

Can I customize pricing for my service area?

Yes, all pricing per linear foot, height multipliers, and add-on services are fully customizable to match your business rates and local market.

Does it account for multi-story homes?

Absolutely. The calculator includes adjustments for single-story through four+ story homes with appropriate pricing multipliers.

Can I add my own services and options?

Yes, you can fully customize gutter types, additional services, and any other options to match your service offerings.

How do I collect customer contact information?

The calculator includes a submit button that can be configured to collect contact details and send them to your email or CRM system.