Wix Integration

Learn how to integrate EasyFindAi into your Wix website

1

Get Your API Key

Select a chatbot in the dashboard to view its API key

2

Add Custom HTML Element to Your Wix Site

Add the EasyFindAi chatbot to your Wix site by adding a custom HTML element.

  1. Go to your Wix Editor
  2. Click the "+" button to add a new element
  3. Search for "HTML iframe" or "Embed" and add it to your page
  4. Click on the element and select "Enter Code"
  5. Paste the following code:
<script
src="https://easyfindai.com/api/chatbot-embed?apiKey=YOUR_API_KEY"
></script>
3

Add to All Pages (Recommended)

To add the chatbot to all pages on your Wix site, use the Wix Code/Velo feature:

  1. In the Wix Editor, click on "Dev Mode" or "Velo by Wix"
  2. Go to "Public & Backend" section
  3. Select "masterPage.js" file
  4. Add the following code:
// Add this code to your masterPage.js file
import {head} from 'wix-document';
$w.onReady(function () {
// Create script element for EasyFindAi chatbot
const scriptEl = document.createElement('script');
scriptEl.src = 'https://easyfindai.com/api/chatbot-embed?apiKey=YOUR_API_KEY';
// Add script to the document head
head.appendChild(scriptEl);
});
4

Test Your Integration

After adding the chatbot to your Wix site:

  1. Preview your site to ensure the chatbot appears
  2. Test the chatbot functionality by asking a few questions
  3. Publish your site to make the chatbot available to your visitors

Note: If you're using Wix's new Editor X, the process is similar, but you'll need to use the "Add Elements" panel to add the HTML component.

That's it!

Your EasyFindAi chatbot is now active on your Wix website and ready to help your visitors.