Integrations
Works where you sell.
Whether you're on WooCommerce or a custom headless setup, Reviewed.me.uk integrates seamlessly into your checkout flow.
Native
WooCommerce
Our native WordPress plugin installs in seconds and works out of the box with any theme.
Available
REST API
Build custom integrations for any platform with our robust, well-documented API.
Beta
SDKs
Official SDKs for React, Vue, and Node.js to speed up your development process.
Developer First API
- 99.9% Uptime Guarantee
- Global Edge Network
- Comprehensive Documentation
- Sandboxed Testing Environment
// Fetch peer match for a product
const response = await fetch('https://api.reviewed.me.uk/v1/matches', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
productId: 'woo_123',
userContext: 'amber-river-coast-paddle'
})
});
const data = await response.json();
console.log(`Match score: ${data.score}%`);