About

Beauhurst

Our story

Problem solvers from the beginning

Co-founders Toby and Stephen first devised the idea for Beauhurst as consultants, tasked with finding potential investors for British companies. They became increasingly frustrated with the process and, whilst on the hunt for some quality structured data and an advanced tool to help them, they soon realised that no such thing existed.

So the duo set to work on building the solution. Since then, we’ve built the Beauhurst platform with high-quality and manually curated data at its core.

We’ve grown the Beauhurst team to over 100 ambitious individuals, opened offices in London and Nottingham, massively advanced our state-of-the-art platform, and expanded to Germany in 2025.

Our funders

Toby Austin

CEO and Co-Founder

Toby has broad experience in building businesses, both creating and growing his own companies and advising others. As CEO he leads on Beauhurst’s strategic direction and development.

Stephen Bence

Chairman and Co-Founder

Stephen has a long background in consultancy and commercialisation, and is an expert in high-growth companies, strategy and law.

test

Name Surname

Professional role
Company

Sorry, your browser does not support inline SVG.
Sorry, your browser does not support inline SVG.
Sorry, your browser does not support inline SVG.

document.addEventListener('DOMContentLoaded', function() { const svgs = document.querySelectorAll('svg'); const quoteParagraph = document.getElementById('quote-paragraph'); const quotes = [ "The only way to do great work is to love what you do. - Steve Jobs", "Strive not to be a success, but rather to be of value. - Albert Einstein", "Two things are infinite: the universe and human stupidity; and I'm not sure about the universe. - Albert Einstein" ]; // Function to display the quote function displayQuote(index) { quoteParagraph.textContent = quotes[index]; } // Set the default quote to the first one displayQuote(0); svgs[0].classList.add('selected'); // Set the default selected circle svgs.forEach(svg => { svg.addEventListener('click', function() { // Remove 'selected' class from all SVGs svgs.forEach(s => s.classList.remove('selected')); // Add 'selected' class to the clicked SVG this.classList.add('selected'); // Get the quote index from the data attribute const quoteIndex = parseInt(this.dataset.quoteIndex); // Display the corresponding quote displayQuote(quoteIndex); }); }); }); #quote-box { margin-top: 20px; /* Add spacing above the quote */ } #quote-paragraph { font-size: 2em; /* Adjust the font size */ font-family: "Times New Roman", serif; font-weight: 200; line-height: 1.2em; color: white; width: 22em; padding-bottom: 1em; } .circle-container{ display: flex; justify-content: center; align-items: center; margin-bottom: 5px; /* Reduced spacing between circles */ } svg { height: 30px; /* Adjust SVG height */ width: 30px; /* Adjust SVG width */ cursor: pointer; transition: transform 0.2s ease-in-out; } svg circle { fill: #6c6c6c; } svg.selected circle { fill: #fff; } svg.selected { transform: scale(1.2); }