Global Estate Agency

Property, elevated.
Everywhere.

Freder connects people to exceptional properties across the world — with expert management, precision letting, and strategic investment advisory.

Explore services Speak to an advisor
4

Countries

£220M

Assets under management

400+

Properties managed

100%

Client satisfaction

What we do

Four pillars.
One world-class agency.

Whether you're a landlord, a buyer, a seller, or an investor — Freder has the expertise, reach, and technology to deliver.

Global reach

Wherever the
opportunity is.

Freder operates across the UK, Romania, China, and Hong Kong — delivering international standards with deep local expertise in every market.

United KingdomRomaniaChinaHong Kong

Why Freder

The edge every property owner deserves.

We combine deep market expertise with cutting-edge technology — including Fred, our AI property concierge — to deliver outcomes that matter.

AI-powered concierge +

Fred, our intelligent property assistant, is available 24/7 to answer tenant questions, coordinate maintenance, and keep landlords informed — all in real time.

Transparent reporting +

Your property dashboard gives you live visibility into occupancy, income, maintenance requests, and market benchmarks — no surprises, ever.

Regulated & trusted +

Freder is a member of a Property Redress Scheme and holds full professional indemnity insurance. Your assets are always in safe, accountable hands.

Dedicated local experts +

Our on-the-ground teams in every market speak the language — literally and commercially. International standards, local knowledge.

Freder transformed how I manage my portfolio across three countries. The level of care and transparency is unlike anything I had experienced before.

James K. — Portfolio Investor, London & Hong Kong

Ready to begin?

Your property journey
starts here.

Select your market and we will take you to your regional Freder home.

document.addEventListener('DOMContentLoaded', function() { // ── NAV SCROLL EFFECT ────────────────────────────────────────────── window.addEventListener('scroll', function() { var nav = document.getElementById('main-nav'); if (nav) nav.style.background = window.scrollY > 60 ? 'rgba(0,0,0,0.9)' : 'rgba(0,0,0,0.72)'; }, { passive: true }); // ── SCROLL REVEAL ────────────────────────────────────────────────── if ('IntersectionObserver' in window) { var io = new IntersectionObserver(function(entries) { entries.forEach(function(e) { if (e.isIntersecting) { e.target.classList.add('visible'); io.unobserve(e.target); } }); }, { threshold: 0.05 }); document.querySelectorAll('.reveal').forEach(function(el) { io.observe(el); }); } else { document.querySelectorAll('.reveal').forEach(function(el) { el.classList.add('visible'); }); } // ── MODAL OPEN/CLOSE WITHOUT SCROLL ──────────────────────────────── var savedScrollY = 0; // Open modal: save position, add class, pushState (no scroll) document.querySelectorAll('a[href^="#modal-"]').forEach(function(link) { link.addEventListener('click', function(e) { e.preventDefault(); var targetId = this.getAttribute('href').slice(1); var modal = document.getElementById(targetId); if (!modal) return; savedScrollY = window.scrollY; // Close any open modal first document.querySelectorAll('.modal-overlay.modal-open').forEach(function(m) { m.classList.remove('modal-open'); }); modal.classList.add('modal-open'); history.pushState(null, '', '#' + targetId); document.body.style.overflow = 'hidden'; }); }); // Close modal: restore position document.querySelectorAll('.modal-close-x').forEach(function(link) { link.addEventListener('click', function(e) { e.preventDefault(); document.querySelectorAll('.modal-overlay.modal-open').forEach(function(m) { m.classList.remove('modal-open'); }); history.pushState(null, '', ' '); document.body.style.overflow = ''; window.scrollTo(0, savedScrollY); }); }); // Close modal on overlay background click document.querySelectorAll('.modal-overlay').forEach(function(overlay) { overlay.addEventListener('click', function(e) { if (e.target === overlay) { overlay.classList.remove('modal-open'); history.pushState(null, '', ' '); document.body.style.overflow = ''; window.scrollTo(0, savedScrollY); } }); }); // ESC key closes modal document.addEventListener('keydown', function(e) { if (e.key === 'Escape') { document.querySelectorAll('.modal-overlay.modal-open').forEach(function(m) { m.classList.remove('modal-open'); }); document.body.style.overflow = ''; window.scrollTo(0, savedScrollY); } }); // ── PILLAR ACCORDION WITHOUT SCROLL ──────────────────────────────── document.querySelectorAll('.pillar-label').forEach(function(label) { label.addEventListener('click', function(e) { e.preventDefault(); var section = this.closest('.pillar-section'); var isOpen = section.classList.contains('active'); // Close all document.querySelectorAll('.pillar-section').forEach(function(s) { s.classList.remove('active'); }); // Toggle this one if (!isOpen) section.classList.add('active'); history.pushState(null, '', ' '); }); }); });