Estate & Letting Agents in Pulham St. Mary, South Norfolk

Find Estate Agents in Pulham St. Mary, South Norfolk
11 results
Whittley Parish
Whittley Parish

Long Stratton

Sales
1 active listing in Pulham St. Mary, South Norfolk, Norfolk, England
56 total
Beatrix Potter Cottage The Street, Long Stratton, NR15 2XJ
View Featured Profile
Auction House

East Anglia

Sales
2 active listings in Pulham St. Mary, South Norfolk, Norfolk, England
316 total
The Barn Newmarket Road Cringleford Norwich NR4 6UE
Durrants

Harleston

Sales
2 active listings in Pulham St. Mary, South Norfolk, Norfolk, England
56 total
32-34 The Thoroughfare, Harleston, IP20 9AU
View Profile
Howards

Covering Long Stratton

Sales
2 active listings in Pulham St. Mary, South Norfolk, Norfolk, England
41 total
The Street, Long Stratton, NR15 2XG
View Profile
Minors & Brady

Diss

Sales
2 active listings in Pulham St. Mary, South Norfolk, Norfolk, England
164 total
46 - 47 Mere Street, Diss, IP22 4AG
Musker Mcintyre

Harleston

Sales
2 active listings in Pulham St. Mary, South Norfolk, Norfolk, England
32 total
5 London Road, Harleston, Norfolk, IP20 9BH
View Profile
Tw Gaze

Diss

Lettings Sales
2 active listings in Pulham St. Mary, South Norfolk, Norfolk, England
77 total
10 Market Hill, Diss, Norfolk. IP22 4WJ
View Profile
William H. Brown

Diss

Lettings Sales
2 active listings in Pulham St. Mary, South Norfolk, Norfolk, England
104 total
Navire House, Mere Street, Diss, Norfolk, IP22 4AG
View Profile
Durrants

Diss

Sales
1 active listing in Pulham St. Mary, South Norfolk, Norfolk, England
51 total
2b Market Hill Diss IP22 4JZ
View Profile
Fine & Country

Diss

Sales
1 active listing in Pulham St. Mary, South Norfolk, Norfolk, England
7 total
Navire House Mere Street, Diss, IP22 4AG
View Profile
Martin Smith Partnership

Long Stratton

Sales
1 active listing in Pulham St. Mary, South Norfolk, Norfolk, England
17 total
Jubilee House The Street Long Stratton NR15 2XJ
View Profile
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 = 'Pulham St. Mary, South Norfolk'; 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 a simple message instead of dumping all agent data statsContainer.innerHTML = '
Unable to load detailed insights
'; 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`; } } }