The easiest way to add search to your documentation – for free.
DocSearch crawls your documentation, pushes the content to an Algolia index and provides a dropdown search experience on your website.
| Light | Dark |
|---|---|
![]() |
![]() |
Don't have your Algolia credentials yet? Apply to DocSearch!
yarn add @docsearch/js@3
# or
npm install @docsearch/js@3If you don’t want to use a package manager, you can use a standalone endpoint:
<script src="https://cdn.jsdelivr.net/npm/@docsearch/js@3"></script>To get started, you need a container for your DocSearch component to go in. If you don’t have one already, you can insert one into your markup:
<div id="docsearch"></div>Then, insert DocSearch into it by calling the docsearch function and providing the container. It can be a CSS selector or an Element.
Make sure to provide a container (for example, a div), not an input. DocSearch generates a fully accessible search box for you.
import docsearch from '@docsearch/js';
import '@docsearch/css';
docsearch({
container: '#docsearch',
appId: 'YOUR_APP_ID',
indexName: 'YOUR_INDEX_NAME',
apiKey: 'YOUR_SEARCH_API_KEY',
});yarn add @docsearch/react@3
# or
npm install @docsearch/react@3If you don’t want to use a package manager, you can use a standalone endpoint:
<script src="https://cdn.jsdelivr.net/npm/@docsearch/react@3"></script>DocSearch generates a fully accessible search box for you.
import { DocSearch } from '@docsearch/react';
import '@docsearch/css';
function App() {
return (
<DocSearch
appId="YOUR_APP_ID"
indexName="YOUR_INDEX_NAME"
apiKey="YOUR_SEARCH_API_KEY"
/>
);
}
export default App;DocSearch is made of the following repositories:
- algolia/docsearch: DocSearch source code.
- algolia/docsearch/packages/website: DocSearch website and documentation.
- algolia/docsearch-configs: DocSearch websites configurations that DocSearch powers.
- algolia/docsearch-scraper: DocSearch crawler that extracts data from your documentation.
Save 100s of hours of work by using Page AI to generate a beautiful website. In just minutes!
Page AI AI Website Generator that designs and writes clean code. Try the app on pageai.pro. |
![]() |
Apihustle is a collection of tools to test, improve and get to know your API inside and out.
apihustle.com
![]() |
Page AI | AI Website Generator that designs and writes clean code. | pageai.pro |
![]() |
Shipixen | Create a personalized blog & landing page in minutes | shipixen.com |
![]() |
Page UI | Landing page UI components for React & Next.js | pageui.dev |
![]() |
Clobbr | Load test your API endpoints. | clobbr.app |
![]() |
Crontap | Schedule API calls using cron syntax. | crontap.com |
![]() |
CronTool | Debug multiple cron expressions on a calendar. | tool.crontap.com |










