Estate & Letting Agents in Newton and Haceby, North Kesteven

Find Estate Agents in Newton and Haceby, North Kesteven
2 results
Newton Fallowell

Grantham

Lettings Sales
1 active listing in Newton and Haceby, North Kesteven, Lincolnshire, England
101 total
68 High Street, Grantham, Lincolnshire, NG31 6NR
View Profile
Quentin Marks Estate Agents
1 active listing in Newton and Haceby, North Kesteven, Lincolnshire, England
59 total
2 West Street, Bourne, PE10 9NE
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 = 'Newton and Haceby, North Kesteven'; 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":59712,"verification_status":"verified","verified_at":"2025-12-22T15:24:50.000000Z","verified_by":null,"verification_notes":null,"name":"Newton Fallowell","email":"grantham@newtonfallowell.co.uk","sales_phone_number":"01476 591900","address":"68 High Street,\r\nGrantham,\r\nLincolnshire,\r\nNG31 6NR","postcode":"NG31 6NR","website_url":"http:\/\/www.newtonfallowell.co.uk","description":null,"listings_feed_url":null,"feed_format":null,"last_feed_sync":null,"crm_provider":"SME Professional","logo":"https:\/\/cdn.home.co.uk\/agents\/59712\/logo.png","office_images":null,"claimed_at":"2025-12-22T15:24:09.000000Z","created_at":"2025-12-09T17:19:03.000000Z","updated_at":"2026-01-20T19:59:44.000000Z","deleted_at":null,"claimed_user_id":"cb096143-431a-4200-ba92-f3ac46037fb3","profile_status":"live","assigned_user_id":null,"id":59712,"agent_company_id":44,"branch_location":"Grantham","lettings_phone_number":"01476 576157","is_sales":true,"is_lettings":true,"is_commercial":false,"is_hm_agent":false,"geopoint":"0101000020E6100000BB0D6ABFB593E4BF709A3E3BE0744A40","agent_brand_id":84,"offers_sales":true,"offers_lettings":true,"claimed_assigned_user_id":null,"brand_color":null,"logo_rect":null,"address_lines":"68 High Street, Grantham, Lincolnshire","has_home_listings":false,"external_crm_branch_id":null,"agent_name":"Newton Fallowell","branch_name":"Grantham","lettings":true,"sales":true,"commercial":false,"h_email":"grantham@newtonfallowell.co.uk","has_email":true,"h_phone":"01476 591900","has_phone":true,"resolved_brand_color":"#ff5e21","boundary_listing_count":"1","property_count":"101","latitude":52.913093,"longitude":-0.643031},{"core_branch_id":60940,"verification_status":"pending","verified_at":null,"verified_by":null,"verification_notes":null,"name":"Quentin Marks Estate Agents","email":"bourne@quentinmarks.co.uk","sales_phone_number":"01778 391600","address":"2 West Street,\r\nBourne,\r\nPE10 9NE ","postcode":"PE10 9NE","website_url":"https:\/\/www.quentinmarks.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\/60940\/logo.png","office_images":null,"claimed_at":null,"created_at":"2025-12-09T17:19:42.000000Z","updated_at":"2026-01-20T20:01:05.000000Z","deleted_at":null,"claimed_user_id":null,"profile_status":"on_hold","assigned_user_id":null,"id":60940,"agent_company_id":695,"branch_location":"Bourne","lettings_phone_number":null,"is_sales":true,"is_lettings":false,"is_commercial":false,"is_hm_agent":false,"geopoint":"0101000020E61000008944A165DD3FD8BF645C717154624A40","agent_brand_id":1175,"offers_sales":true,"offers_lettings":false,"claimed_assigned_user_id":null,"brand_color":null,"logo_rect":null,"address_lines":"2 West Street, Bourne","has_home_listings":false,"external_crm_branch_id":null,"agent_name":"Quentin Marks Estate Agents","branch_name":"Bourne","lettings":false,"sales":true,"commercial":false,"h_email":"bourne@quentinmarks.co.uk","has_email":true,"h_phone":"01778 391600","has_phone":true,"resolved_brand_color":"#aebc4d","boundary_listing_count":"1","property_count":"59","latitude":52.768202,"longitude":-0.378898}]; 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`; } } }