Skip to main content
All CollectionsIntegrating with MotorCheck
MotorCheck Affiliate Programme
MotorCheck Affiliate Programme

Everything you need to get started with the MotorCheck affiliate programme.

Shane avatar
Written by Shane
Updated over a week ago

Welcome to the MotorCheck Affiliate Program! By partnering with us, you can earn commissions by promoting our car history check services on your website. Follow this guide to understand the process and get started.

Step 1: Become an Affiliate

Before you begin promoting MotorCheck, you must first sign our Affiliate Service Agreement. This agreement outlines the terms and conditions of your participation in our affiliate program.

Signing this agreement is a mandatory step to ensure that all affiliates are aligned with our program’s guidelines and expectations.

Step 2: Create an SEO-Friendly Page

Once your agreement is signed and approved, the next step is to create a dedicated page on your website. This page should be optimised for search engines and provide valuable information about the benefits of conducting a car history check.

Step 3: Integrate the "Enter VRM" Form

Include a well-designed form on your page where users can enter the Vehicle Registration Mark (VRM) of the car they want to check. The form should have a button that, when clicked, directs the user to MotorCheck’s free car check service.


Here's how we do it on MotorCheck.co.uk...

Here's a very simple sample form in HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Car History Check</title>
</head>
<body>
<h2>Enter Your Vehicle Registration Mark (VRM) for a Free Car History Check</h2>
<form id="vrmForm" onsubmit="redirectToMotorCheck(); return false;">
<label for="vrm">Vehicle Registration Mark (VRM):</label><br>
<input type="text" id="vrm" name="vrm" placeholder="Enter VRM" required>
<br><br>
<button type="submit">Check History</button>
</form>

<script>
function redirectToMotorCheck() {
var vrm = document.getElementById('vrm').value;
var affiliateID = 'youraffiliateID'; // Replace with the actual affiliate ID
var motorCheckUrl = `https://www.motorcheck.co.uk/free-car-check?vrm=${vrm}#${affiliateID}`;
window.location.href = motorCheckUrl;
}
</script>
</body>
</html>

Step 4: Generate and Use Your Affiliate Link

Your affiliate link will look like this:

bashCopy codehttps://www.motorcheck.co.uk/free-car-check?vrm=REG#youraffiliateID
  • Replace REG with the actual VRM entered by the user.

  • Replace youraffiliateID with your unique identifier.

Example:

bashCopy codehttps://www.motorcheck.co.uk/free-car-check?vrm=DS66ERX#newaffiliate

This link ensures that all successful transactions are tracked and commissions are accurately attributed to you.

Step 5: Track Your Commissions

Every time a user clicks your link and completes a purchase, the transaction is logged with your affiliate ID. You will earn a commission on all successful sales generated through your links.


For more information or if you need assistance, please feel free to reach out to our support team. We look forward to a successful partnership!

Did this answer your question?