Estate & Letting Agents in Ingleton, County Durham

Find Estate Agents in Ingleton, County Durham
2 results
Carver Residential

Darlington

Sales
2 active listings in Ingleton, County Durham, North East, England
215 total
14 Duke Street, Darlington, DL3 7AA
View Profile
Strutt & Parker

Harrogate

Lettings Sales
1 active listing in Ingleton, County Durham, North East, England
55 total
Unit 9, Westgate House 5 Albert Street Harrogate HG1 1JX
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 = 'Ingleton, 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":53762,"verification_status":"pending","verified_at":null,"verified_by":null,"verification_notes":null,"name":"Carver Residential","email":"sales@nickcarver.co.uk","sales_phone_number":"01325 357807","address":"14 Duke Street,\r\nDarlington,\r\nDL3 7AA","postcode":"DL3 7AA","website_url":"https:\/\/www.nickcarver.com","description":null,"listings_feed_url":null,"feed_format":null,"last_feed_sync":null,"crm_provider":null,"logo":"https:\/\/cdn.home.co.uk\/agents\/53762\/logo.png","office_images":null,"claimed_at":null,"created_at":"2025-12-09T17:15:47.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":53762,"agent_company_id":1074,"branch_location":"Darlington","lettings_phone_number":null,"is_sales":true,"is_lettings":false,"is_commercial":false,"is_hm_agent":false,"geopoint":"0101000020E6100000F2423A3C84F1F8BF431F2C6343434B40","agent_brand_id":1602,"offers_sales":true,"offers_lettings":true,"claimed_assigned_user_id":null,"brand_color":null,"logo_rect":null,"address_lines":"14 Duke Street, Darlington","has_home_listings":false,"external_crm_branch_id":null,"agent_name":"Carver Residential","branch_name":"Darlington","lettings":false,"sales":true,"commercial":false,"h_email":"sales@nickcarver.co.uk","has_email":true,"h_phone":"01325 357807","has_phone":true,"resolved_brand_color":"#011d50","boundary_listing_count":"2","property_count":"215","latitude":54.525494,"longitude":-1.558964},{"core_branch_id":56077,"verification_status":"pending","verified_at":null,"verified_by":null,"verification_notes":null,"name":"Strutt \u0026 Parker","email":"harrogate@struttandparker.com","sales_phone_number":"01423 561274","address":"Unit 9, Westgate House\r\n5 Albert Street\r\nHarrogate\r\nHG1 1JX","postcode":"HG1 1JX","website_url":"https:\/\/www.struttandparker.com","description":null,"listings_feed_url":null,"feed_format":null,"last_feed_sync":null,"crm_provider":null,"logo":"https:\/\/cdn.home.co.uk\/agents\/56077\/logo.png","office_images":null,"claimed_at":null,"created_at":"2025-12-09T17:17:04.000000Z","updated_at":"2026-01-20T20:01:29.000000Z","deleted_at":null,"claimed_user_id":null,"profile_status":"on_hold","assigned_user_id":null,"id":56077,"agent_company_id":257,"branch_location":"Harrogate","lettings_phone_number":"01423 593595","is_sales":true,"is_lettings":true,"is_commercial":false,"is_hm_agent":false,"geopoint":"0101000020E6100000A4703D0AD7A3F8BFE5D022DBF9FE4A40","agent_brand_id":547,"offers_sales":true,"offers_lettings":true,"claimed_assigned_user_id":null,"brand_color":null,"logo_rect":null,"address_lines":"Unit 9, Westgate House, 5 Albert Street, Harrogate","has_home_listings":false,"external_crm_branch_id":null,"agent_name":"Strutt \u0026 Parker","branch_name":"Harrogate","lettings":true,"sales":true,"commercial":false,"h_email":"harrogate@struttandparker.com","has_email":true,"h_phone":"01423 561274","has_phone":true,"resolved_brand_color":"#cb1144","boundary_listing_count":"1","property_count":"55","latitude":53.992,"longitude":-1.54}]; 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`; } } }