Wix is a cloud-based platform that lets users create professional websites without needing to know how to code. Its main purpose is to provide an all-in-one solution for building and managing an online presence. The core of Wix is its drag-and-drop website editor, which allows for high levels of customization. Users can build everything from simple blogs and portfolios to complex eCommerce stores and booking websites. Founded in 2006 by Avishai Abrahami, Nadav Abrahami, and Giora Kaplan, Wix has grown into one of the most popular website builders globally. The company is headquartered in Tel Aviv, Israel, and serves millions of users worldwide.
Wix offers several pricing tiers to fit different needs. There are plans designed for personal websites, which remove Wix ads and allow you to connect a custom domain. For professionals and freelancers, there are plans that offer more storage, bandwidth, and business applications. The highest tiers are for businesses and eCommerce, providing advanced features like online payment processing, abandoned cart recovery, and selling on marketplaces. Each plan builds upon the previous one, offering more advanced tools and fewer limitations.
Wix has a free plan that allows you to create and publish a fully functional website. The free plan includes access to the website editor, all templates, and hundreds of apps from the Wix App Market. However, it has some limitations. Your website will have a Wix-branded domain name (e.g., username.wixsite.com/sitename
), and Wix ads will be displayed on the top and bottom of your site. Storage and bandwidth are also limited, and you cannot use the eCommerce features to accept payments.
Getting started with Wix is a simple process:
Pros:
Cons:
Wix integrates with hundreds of third-party applications through the Wix App Market. This allows you to connect your website to other services you use. To add an integration, you simply search for the app in the App Market and add it to your site with a few clicks.
Wix provides extensive APIs for developers through its Velo by Wix platform. Velo is a full-stack development platform that allows you to build custom web applications on top of Wix. It lets you add custom functionality, connect to external APIs, and work with Wix's business applications programmatically. You can get API keys and manage them within the Wix Dev Center after creating an account. The platform uses JavaScript and provides a serverless environment, so you don't have to manage infrastructure.
Example of using a Wix Data API with Velo:
import wixData from 'wix-data';
// ...
// Query a collection named 'MyCollection'
wixData.query("MyCollection")
.find()
.then( (results) => {
let items = results.items;
console.log(items);
} )
.catch( (err) => {
let errorMsg = err;
console.error(errorMsg);
} );
This code snippet shows how to query a database collection within a Wix site using Velo's data API.
Wix has an affiliate program that allows you to earn commissions by promoting Wix and referring new premium users. To join, you need to apply through the Wix Affiliate Program page. Once approved, you receive a unique affiliate link to share on your website, blog, or social media channels. You earn a commission for every visitor who clicks your link and purchases a Wix Premium Plan. Payouts are typically made after you reach a certain earning threshold. The program provides marketing materials and a dashboard to track your clicks, referrals, and earnings.