EKM : EKM is an all-in-one online store builder, with the company based in the UK.
This technology is used by 0.02% of websites in the Ecommerce category. The most popular industry vertical is Hobbies & Interests, with Arts and Crafts being the top subcategory.
What is EKM?
EKM is a UK-based e-commerce platform that provides complete online store solutions for businesses. Founded in 2002, EKM offers an all-in-one platform that includes website hosting, online store builder, payment processing, and marketing tools. The platform is designed to make selling online accessible to businesses of all sizes without requiring technical expertise.
The EKM platform includes everything needed to run an online business from a single dashboard. Store owners get professional website templates, product management tools, secure checkout, and integration with major payment providers and shipping carriers. The platform handles technical infrastructure so merchants can focus on their products and customers.
EKM differentiates itself through comprehensive support and UK-focused features. The platform includes compliance with UK regulations, integration with UK payment processors and carriers, and support team based in the UK. This local focus helps British businesses navigate the specific requirements of selling online in their market.
The platform provides built-in marketing tools including SEO optimization, email marketing, and social media integration. Advanced features include multi-channel selling, customer accounts, and detailed analytics. EKM also offers API access for custom integrations and advanced customization.
Detection of EKM on a website indicates a UK-focused e-commerce business using a comprehensive hosted platform. Merchants using EKM typically value ease of use, local support, and having all e-commerce tools in one integrated system.
Industry Vertical Distribution
Technologies Frequently Used with EKM
| Technology | Co-usage Rate | Website |
|---|---|---|
| Google Tag Manager | 100% | http://www.google.com/tagmanager |
| Google Analytics | 100% | http://google.com/analytics |
| TrackJs | 92.21% | http://trackjs.com |
| Google Font API | 81.82% | http://google.com/fonts |
| jQuery | 75.32% | https://jquery.com |
| Font Awesome | 64.94% | https://fontawesome.com/ |
| 28.57% | http://facebook.com | |
| Facebook Sign-in | 27.27% | https://developers.facebook.com/docs/facebook-login/ |
| Tawk.to | 10.39% | http://tawk.to |
| AddThis | 10.39% | http://www.addthis.com |
EKM Platform Features
Store Builder: Drag-and-drop page editor. Professional template library. Mobile-responsive designs. Custom design options.
Product Management: Unlimited products supported. Variant and option management. Inventory tracking. Digital product delivery.
Payment Processing: Multiple payment gateways. UK payment provider integration. Secure checkout. PCI compliance handled.
Shipping Integration: UK carrier connections. Shipping rate calculation. Label printing. Order tracking.
Marketing Tools: Built-in SEO features. Email marketing included. Discount and coupon system. Abandoned cart recovery.
Multi-Channel Selling: Marketplace integrations. Social media selling. Google Shopping feed. Amazon and eBay sync.
Business Management: Order management system. Customer database. Analytics dashboard. Report generation.
AI-Powered Technology Recommendations
Our AI recommender engine, trained on 100 million data points, suggests these technologies for websites using EKM:
| Technology | AI Score | Website |
|---|---|---|
| TrackJs | 0.42 | http://trackjs.com |
| Google Tag Manager for WordPress | 0.22 | https://gtm4wp.com |
| Isotope | 0.18 | https://isotope.metafizzy.co |
| MonsterInsights | 0.16 | https://www.monsterinsights.com |
| Prefix-Free | 0.16 | https://leaverou.github.io/prefixfree/ |
| Facebook Chat Plugin | 0.15 | https://developers.facebook.com/docs/messenger-platform/discovery/facebook-chat-plugin/ |
| GoDaddy CoBlocks | 0.15 | https://github.com/godaddy-wordpress/coblocks |
| SoundManager | 0.14 | http://www.schillmania.com/projects/soundmanager2 |
| jQuery DevBridge Autocomplete | 0.14 | https://www.devbridge.com/sourcery/components/jquery-autocomplete/ |
| Microsoft Clarity | 0.14 | https://clarity.microsoft.com |
IAB Tier 1 Vertical Distribution
Relative Usage by Industry
Market Distribution Comparison
EKM Use Cases
Small Business E-commerce: First online store setup. Simple product catalogs. Local business expansion online. Budget-conscious merchants.
Growing Retailers: Scaling online operations. Multi-channel expansion. Inventory management needs. Professional store presentation.
UK Market Focus: British businesses selling domestically. UK compliance requirements. Local payment preferences. UK carrier integration.
Non-Technical Merchants: No coding required. Guided store setup. Managed technical infrastructure. Support when needed.
Service Businesses: Appointment booking. Service package sales. Digital product delivery. Membership subscriptions.
Marketplace Sellers: Unified inventory management. Multi-platform listing. Consolidated order processing. Centralized business view.
IAB Tier 2 Subcategory Distribution
Top Websites Using EKM
| Website | IAB Category | Subcategory | OpenRank |
|---|---|---|---|
| kjglobal.co.uk | Technology & Computing | Consumer Electronics | 3.72 |
| originalstormtrooper.com | Hobbies & Interests | Auto Type | 3.7 |
| travelpostersonline.com | Travel | Travel Type | 3.26 |
| artisanti.com | Home & Garden | Interior Decorating | 3.17 |
| thesweetbox.com | Automotive | Auto Type | 3.11 |
| timber-tones.com | Hobbies & Interests | Musical Instruments | 2.99 |
| dontbitemepatch.com | Healthy Living | Cats | 2.9 |
| beatchapter.com | Music and Audio | Rock Music | 2.88 |
| altairastro.com | Science | Space and Astronomy | 2.85 |
| anangelatmytable.com | Style & Fashion | Outdoor Decorating | 2.84 |
EKM Integration Examples
API Authentication
// EKM API setup
$apiEndpoint = 'https://api.ekm.net/v1/';
$apiKey = 'YOUR_API_KEY';
$headers = [
'Authorization: Bearer ' . $apiKey,
'Content-Type: application/json'
];
// Initialize cURL
$ch = curl_init();
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
Product Management
// Get products
curl_setopt($ch, CURLOPT_URL, $apiEndpoint . 'products');
$products = json_decode(curl_exec($ch), true);
// Create new product
$newProduct = [
'name' => 'Premium Widget',
'product_code' => 'WIDGET-001',
'price' => 29.99,
'description' => 'High quality widget for all purposes',
'category_id' => 123,
'stock_level' => 100,
'weight' => 0.5,
'options' => [
[
'name' => 'Color',
'values' => ['Red', 'Blue', 'Green']
],
[
'name' => 'Size',
'values' => ['Small', 'Medium', 'Large']
]
]
];
curl_setopt($ch, CURLOPT_URL, $apiEndpoint . 'products');
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($newProduct));
$response = curl_exec($ch);
Order Retrieval
// Get recent orders
curl_setopt($ch, CURLOPT_URL, $apiEndpoint . 'orders?status=pending');
curl_setopt($ch, CURLOPT_POST, false);
$orders = json_decode(curl_exec($ch), true);
foreach ($orders['orders'] as $order) {
echo "Order #{$order['order_number']}\n";
echo "Customer: {$order['customer_name']}\n";
echo "Total: £{$order['total']}\n";
foreach ($order['items'] as $item) {
echo " - {$item['name']} x {$item['quantity']}\n";
}
}
// Update order status
$statusUpdate = ['status' => 'dispatched'];
curl_setopt($ch, CURLOPT_URL, $apiEndpoint . 'orders/12345');
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'PUT');
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($statusUpdate));
curl_exec($ch);
Customer Management
// Node.js customer API
const axios = require('axios');
const ekmApi = axios.create({
baseURL: 'https://api.ekm.net/v1/',
headers: {
'Authorization': `Bearer ${process.env.EKM_API_KEY}`,
'Content-Type': 'application/json'
}
});
// Get customer details
async function getCustomer(customerId) {
const response = await ekmApi.get(`customers/${customerId}`);
return response.data;
}
// Search customers
async function searchCustomers(email) {
const response = await ekmApi.get('customers', {
params: { email: email }
});
return response.data.customers;
}
// Update customer
async function updateCustomer(customerId, data) {
const response = await ekmApi.put(`customers/${customerId}`, data);
return response.data;
}
Inventory Sync
// Sync inventory levels
function updateStock($productCode, $quantity) {
global $ch, $apiEndpoint;
$stockUpdate = [
'product_code' => $productCode,
'stock_level' => $quantity
];
curl_setopt($ch, CURLOPT_URL, $apiEndpoint . 'products/stock');
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'PUT');
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($stockUpdate));
return curl_exec($ch);
}
// Bulk stock update
$stockUpdates = [
['product_code' => 'SKU001', 'stock_level' => 50],
['product_code' => 'SKU002', 'stock_level' => 25],
['product_code' => 'SKU003', 'stock_level' => 100]
];
curl_setopt($ch, CURLOPT_URL, $apiEndpoint . 'products/stock/bulk');
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($stockUpdates));
curl_exec($ch);
Usage by Domain Popularity (Top 1M)
Usage by Domain Age
The average age of websites using EKM is 13.6 years. The average OpenRank (measure of backlink strength) is 2.04.
Why UK Businesses Choose EKM
UK Focused: Built for British businesses. UK payment integration. Local carrier connections. UK support team.
All-Inclusive Platform: Everything in one place. No plugin hunting. Integrated features. Simplified management.
Ease of Use: No technical skills required. Guided setup process. Intuitive interface. Quick store launch.
Support Quality: UK-based support team. Phone support available. Account management. Setup assistance.
Compliance Handled: GDPR compliance tools. Cookie consent managed. VAT handling. Legal page templates.
Growth Ready: Scalable infrastructure. Multi-channel expansion. Advanced features available. API for customization.
Proven Platform: Operating since 2002. Thousands of stores powered. Established reliability. Continuous development.
Emerging Websites Using EKM
| Website | IAB Category | Subcategory | OpenRank |
|---|---|---|---|
| 1st-tooling.co.uk | Hobbies & Interests | Arts and Crafts | 0 |
| inveranbagpipemakers.com | Hobbies & Interests | Musical Instruments | 0 |
| instorefurniture.co.uk | Style & Fashion | Interior Decorating | 0.12 |
| roseandcompanyshop.co.uk | Travel | Travel Accessories | 0.47 |
| fieldgatemusic.com | Music and Audio | Fiction | 0.51 |