captionamerica03654
# general-english
c
Hi! I'm looking to embed Vapi on my website. Has anyone done this before? Can I speak to someone who can help please or get some documentation around the same? @Vapi ?
v
@CaptionAmerica Hello! I'd be happy to assist you with embedding Vapi on your website. Many developers have successfully integrated Vapi into their web applications, and I can guide you through the process. Firstly, you'll need to install the package. If you're using yarn, you can add it with the following command:
Copy code
sh
yarn add @vapi-ai/web
Or if you're using npm, you can install it like this:
Copy code
sh
npm install @vapi-ai/web
After installation, you'll need to import the package into your project:
Copy code
javascript
import Vapi from "@vapi-ai/web";
Then, create a new instance of the Vapi class, passing your Public Key as a parameter to the constructor:
Copy code
javascript
const vapi = new Vapi("your-public-key");
You can find your public key in the Vapi Dashboard. Once you have your instance, you can start using Vapi by calling the
.start()
method:
Copy code
javascript
vapi.start();
This will initialize the Vapi service on your website. If you need more detailed documentation or have any specific questions, please let me know, and I'll be glad to help further!
c
Please send me more detailed documentation. Also something that works with webflow? Also how do I customize the view of the bot?
s
@CaptionAmerica create #1211483291191083018 ticket for your issue according to post guidelines.
3 Views