Estate & Letting Agents in Woodland, County Durham

Find Estate Agents in Woodland, County Durham
2 results
George F.White

Barnard Castle

Sales
2 active listings in Woodland, County Durham, North East, England
88 total
14c Redwell Court, Barnard Castle, County Durham DL12 8BN
View Profile
Hunters

Bishop Auckland

Sales
1 active listing in Woodland, County Durham, North East, England
222 total
147-149 Newgate Street, Bishop Auckland, County Durham, DL14 7EN
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 = 'Woodland, County Durham'; 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":53739,"verification_status":"pending","verified_at":null,"verified_by":null,"verification_notes":null,"name":"George F.White","email":"barnardcastle@georgefwhite.co.uk","sales_phone_number":"03339 202220","address":"14c Redwell Court,\r\nBarnard Castle,\r\nCounty Durham\r\nDL12 8BN","postcode":"DL12 8BN","website_url":"http:\/\/www.georgefwhite.co.uk","description":null,"listings_feed_url":null,"feed_format":null,"last_feed_sync":null,"crm_provider":null,"logo":"https:\/\/cdn.home.co.uk\/agents\/53739\/logo.png","office_images":null,"claimed_at":null,"created_at":"2025-12-09T17:15:46.000000Z","updated_at":"2026-01-20T19:53:00.000000Z","deleted_at":null,"claimed_user_id":null,"profile_status":"on_hold","assigned_user_id":null,"id":53739,"agent_company_id":5926,"branch_location":"Barnard Castle","lettings_phone_number":null,"is_sales":true,"is_lettings":false,"is_commercial":false,"is_hm_agent":false,"geopoint":"0101000020E61000000A68226C78BAFEBF1E5036E50A474B40","agent_brand_id":6736,"offers_sales":true,"offers_lettings":true,"claimed_assigned_user_id":null,"brand_color":null,"logo_rect":null,"address_lines":"14c Redwell Court, Barnard Castle, County Durham","has_home_listings":false,"external_crm_branch_id":null,"agent_name":"George F.White","branch_name":"Barnard Castle","lettings":false,"sales":true,"commercial":false,"h_email":"barnardcastle@georgefwhite.co.uk","has_email":true,"h_phone":"03339 202220","has_phone":true,"resolved_brand_color":"#163d35","boundary_listing_count":"2","property_count":"88","latitude":54.55502,"longitude":-1.920525},{"core_branch_id":53749,"verification_status":"pending","verified_at":null,"verified_by":null,"verification_notes":null,"name":"Hunters","email":"bishopauckland@huntersnet.co.uk","sales_phone_number":"01388 311582","address":"147-149 Newgate Street,\r\nBishop Auckland,\r\nCounty Durham,\r\nDL14 7EN","postcode":"DL14 7EN","website_url":"https:\/\/www.hunters.com\/offices\/bishop-auckland","description":null,"listings_feed_url":null,"feed_format":null,"last_feed_sync":null,"crm_provider":null,"logo":"https:\/\/cdn.home.co.uk\/agents\/53749\/logo.png","office_images":null,"claimed_at":null,"created_at":"2025-12-09T17:15:46.000000Z","updated_at":"2026-01-20T19:53:00.000000Z","deleted_at":null,"claimed_user_id":null,"profile_status":"on_hold","assigned_user_id":null,"id":53749,"agent_company_id":98,"branch_location":"Bishop Auckland","lettings_phone_number":null,"is_sales":true,"is_lettings":false,"is_commercial":false,"is_hm_agent":false,"geopoint":"0101000020E610000019ABCDFFABCEFABF7EE5417A8A544B40","agent_brand_id":290,"offers_sales":true,"offers_lettings":true,"claimed_assigned_user_id":null,"brand_color":null,"logo_rect":null,"address_lines":"147-149 Newgate Street, Bishop Auckland, County Durham","has_home_listings":false,"external_crm_branch_id":null,"agent_name":"Hunters","branch_name":"Bishop Auckland","lettings":false,"sales":true,"commercial":false,"h_email":"bishopauckland@huntersnet.co.uk","has_email":true,"h_phone":"01388 311582","has_phone":true,"resolved_brand_color":"#193273","boundary_listing_count":"1","property_count":"222","latitude":54.660476,"longitude":-1.675457}]; 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`; } } }