Can ChattyBox crawl a Docusaurus site?
Yes. ChattyBox can crawl public Docusaurus documentation pages or use a sitemap URL to discover docs content.
Turn your Docusaurus docs into an AI support assistant that cites the exact pages it used. Keep your docs stack, add one embeddable widget.
Some AI support tools make you book a demo before you can even test the product. ChattyBox is self-serve: add your site, crawl your docs, test the chatbot, and embed it when you are ready.
ChattyBox crawls your existing documentation, indexes the content for retrieval, and embeds a chatbot that answers using your docs instead of generic model memory.
Enter your documentation URL or sitemap in ChattyBox.
Let the crawler extract pages, headings, and readable text.
Test real user questions and verify source citations.
Embed the widget with one script tag and monitor unanswered questions.
Create a Docusaurus theme Root component, add the widget script after your docs are scraped, and deploy. Your visitors can then ask questions from any docs page.
import React, { useEffect } from 'react';
export default function Root({ children }) {
useEffect(() => {
const script = document.createElement('script');
script.src = 'https://chattybox.ai/widget.js?v=7';
script.async = true;
script.setAttribute('data-api-key', 'YOUR_API_KEY');
script.setAttribute('data-api-url', 'https://app.chattybox.ai');
script.setAttribute('data-chattybox-widget', 'true');
document.body.appendChild(script);
return () => script.remove();
}, []);
return <>{children}</>;
}Yes. ChattyBox can crawl public Docusaurus documentation pages or use a sitemap URL to discover docs content.
No. You embed ChattyBox with a script tag, so it works alongside your existing Docusaurus theme and deployment.
Yes. Answers can include citations that point users back to the exact documentation pages used for the response.
Yes. You can test scraped content in the dashboard before copying the widget snippet to your Docusaurus site.