Simple A/B Testing
Grow your projects and applications through experimentation. Check what works and get rid of what doesn't. Optimize and grow.
Start 7 day trial now >Grow your projects and applications through experimentation. Check what works and get rid of what doesn't. Optimize and grow.
Start 7 day trial now >Keeping your users private is very important.
Dual Kind does not and will never sell any information about your users to third parties. The information collected on each request is transformed into a unique identifier that cannot be reversed to identify the user.
Having an easy integration with your code is one of our concerns. The API is build to be as simple as possible, yet giving you easy access to every functionality.
<html>
<head>
<title>Your awesome page</title>
<!-- Add dependency on spark-v1.js and setup `dualkind` with your key -->
<script src="https://cdn.dualkind.com/spark-v1.js"></script>
<script>dualkind.setup("your-key");</script>
</head>
<body>
<!-- Activate your experiment and get the selected variation -->
<script>
dualkind.activate("test_buy_button", function(variation) {
console.log(variation);
});
</script>
<!-- Track with only one event -->
<script>dualkind.track("test_buy_button");</script>
<!-- Track with a specific event -->
<script>dualkind.track("test_buy_button", "convert");</script>
</body>
</html>
You can view extended examples in documentation section.