Estate & Letting Agents in Sawbridgeworth, East Hertfordshire

Find Estate Agents in Sawbridgeworth, East Hertfordshire
32 results
Urban Moves LTD

Nationwide

Sales
1 active listing in Sawbridgeworth, East Hertfordshire, Hertfordshire, England
92 total
2nd Floor, 3 The Square, Richmond, London, TW9 1DY
View Profile
Willmott & Lake

Bishop'S Stortford

Sales
1 active listing in Sawbridgeworth, East Hertfordshire, Hertfordshire, England
67 total
23 Hockerill Street, Bishop's Stortford, CM23 2DH
Page 2 of 2
initializeAllPremierCards() }); // Load detailed stats function function loadDetailedStats() { const button = document.getElementById('load-more-stats'); const statsContainer = document.getElementById('detailed-stats'); if (statsContainer.classList.contains('hidden')) { // Show loading state button.innerHTML = ` Loading... `; // Make AJAX call for detailed stats const location = 'Sawbridgeworth, East Hertfordshire'; const agentType = ''; fetch(`/api/agents/detailed-stats?location=${encodeURIComponent(location)}&type=${agentType}`) .then(response => response.json()) .then(data => { // Build detailed stats HTML let statsHtml = '
'; // Property types breakdown if (data.propertyTypes && Object.keys(data.propertyTypes).length > 0) { statsHtml += `
Property Types
`; for (const [type, count] of Object.entries(data.propertyTypes)) { const percentage = Math.round((count / data.totalProperties) * 100); statsHtml += `
${type}: ${count.toLocaleString()} (${percentage}%)
`; } statsHtml += '
'; } // Price ranges if (data.priceRanges) { statsHtml += `
Price Ranges
Avg Sale Price: £${data.priceRanges.avgSalePrice?.toLocaleString() || 'N/A'}
Avg Rent PCM: £${data.priceRanges.avgRentPrice?.toLocaleString() || 'N/A'}
`; } // Top performing agents if (data.topAgents && data.topAgents.length > 0) { statsHtml += `
Top Agents
`; data.topAgents.slice(0, 3).forEach(agent => { statsHtml += `
${agent.name}: ${agent.property_count} props
`; }); statsHtml += '
'; } statsHtml += '
'; // Show stats statsContainer.innerHTML = statsHtml; statsContainer.classList.remove('hidden'); // Update button button.innerHTML = ` Hide Insights `; }) .catch(error => { // If API fails, show some calculated stats from existing data const agents = [{"core_branch_id":65472,"verification_status":"pending","verified_at":null,"verified_by":null,"verification_notes":null,"name":"Urban Moves LTD","email":"salesadmin@urbanmoves.com","sales_phone_number":"03330 166560","address":"2nd Floor, \r\n3 The Square,\r\nRichmond,\r\nLondon,\r\nTW9 1DY","postcode":"TW9 1DY","website_url":"http:\/\/www.urbanmoves.com","description":null,"listings_feed_url":null,"feed_format":null,"last_feed_sync":null,"crm_provider":null,"logo":"https:\/\/cdn.home.co.uk\/agents\/65472\/logo.png","office_images":null,"claimed_at":null,"created_at":"2025-12-09T17:22:10.000000Z","updated_at":"2026-01-20T19:59:11.000000Z","deleted_at":null,"claimed_user_id":null,"profile_status":"on_hold","assigned_user_id":null,"id":65472,"agent_company_id":8340,"branch_location":"Nationwide","lettings_phone_number":null,"is_sales":true,"is_lettings":false,"is_commercial":false,"is_hm_agent":false,"geopoint":"0101000020E61000007217618A7269D3BFF6F065A208BB4940","agent_brand_id":9208,"offers_sales":true,"offers_lettings":false,"claimed_assigned_user_id":null,"brand_color":null,"logo_rect":null,"address_lines":"2nd Floor, 3 The Square, Richmond, London","has_home_listings":false,"external_crm_branch_id":null,"agent_name":"Urban Moves LTD","branch_name":"Nationwide","lettings":false,"sales":true,"commercial":false,"h_email":"salesadmin@urbanmoves.com","has_email":true,"h_phone":"03330 166560","has_phone":true,"resolved_brand_color":"#fd4040","boundary_listing_count":"1","property_count":"92","latitude":51.461201,"longitude":-0.303311},{"core_branch_id":52623,"verification_status":"pending","verified_at":null,"verified_by":null,"verification_notes":null,"name":"Willmott \u0026 Lake","email":null,"sales_phone_number":"01279 801165","address":"23 Hockerill Street,\r\nBishop\u0027s Stortford,\r\nCM23 2DH","postcode":"CM23 2DH","website_url":null,"description":null,"listings_feed_url":null,"feed_format":null,"last_feed_sync":null,"crm_provider":null,"logo":"https:\/\/cdn.home.co.uk\/agents\/52623\/logo.png","office_images":null,"claimed_at":null,"created_at":"2025-12-09T17:15:09.000000Z","updated_at":"2026-01-20T19:52:48.000000Z","deleted_at":null,"claimed_user_id":null,"profile_status":"on_hold","assigned_user_id":null,"id":52623,"agent_company_id":9338,"branch_location":"Bishop\u0027S Stortford","lettings_phone_number":null,"is_sales":true,"is_lettings":false,"is_commercial":false,"is_hm_agent":false,"geopoint":"0101000020E610000066DCD440F339C53FBABDA4315AEF4940","agent_brand_id":10234,"offers_sales":true,"offers_lettings":true,"claimed_assigned_user_id":null,"brand_color":null,"logo_rect":null,"address_lines":"23 Hockerill Street, Bishop\u0027s Stortford","has_home_listings":false,"external_crm_branch_id":null,"agent_name":"Willmott \u0026 Lake","branch_name":"Bishop\u0027S Stortford","lettings":false,"sales":true,"commercial":false,"h_email":null,"has_email":false,"h_phone":"01279 801165","has_phone":true,"resolved_brand_color":"#c91f24","boundary_listing_count":"1","property_count":"67","latitude":51.86994,"longitude":0.165831}]; let topAgents = []; agents.forEach(agent => { // Collect top agents if (agent.property_count > 0) { topAgents.push({ name: agent.name, property_count: agent.property_count }); } }); // Sort top agents topAgents.sort((a, b) => b.property_count - a.property_count); let statsHtml = '
'; // Show top agents if (topAgents.length > 0) { statsHtml += `
Top Performing Agents
`; topAgents.slice(0, 5).forEach(agent => { statsHtml += `
${agent.name}: ${agent.property_count} properties
`; }); statsHtml += '
'; } statsHtml += '
'; statsContainer.innerHTML = statsHtml; statsContainer.classList.remove('hidden'); button.innerHTML = ` Hide Insights `; }); } else { // Hide stats statsContainer.classList.add('hidden'); button.innerHTML = ` Load Detailed Insights `; } } // Open agent map function function openAgentMap(locationSlug) { // Use the floating view toggle button const mapBtn = document.getElementById('agent-view-map'); if (mapBtn) { mapBtn.click(); } else { // Fallback to old button const oldMapBtn = document.getElementById('view-map-btn'); if (oldMapBtn) { oldMapBtn.click(); } else { // Last resort - open map page window.location.href = `/agents/${locationSlug}/map`; } } }