The JavaScript API client
Algolia’s JavaScript API client lets you use Algolia’s APIs from your JavaScript application. Compared to using the APIs directly, using the JavaScript API client has these benefits:
-
Network retry strategy. The API client automatically retries connecting to another Algolia server, if the connection fails. Thanks to that, using the API clients is covered by Algolia’s SLA.
-
Reindexing. The API clients let you reindex your records in a single operation.
-
Automatic batching. When you add records to your index, the API client automatically batches your records to make fewer API requests.
Algolia’s JavaScript API client is open source. You can find the source code on GitHub.
You’re reading the documentation for version 4 of the Algolia JavaScript API client. Earlier versions of the API client are no longer supported. If you want to update to version 4, see the upgrade guide. You can still access the version 3 documentation.
Quickstart sample app
To download and run a self-contained example, see the JavaScript quickstart on GitHub.
You can use the Algolia JavaScript API client in the browser, and in your back end (Node.js) with the same API.
The JavaScript snippets in the documentation use ES6 syntax. If you want to convert ES6 code to ES5, you can use projects like Babel.js.
For integrating Algolia into your user interface, you should use one of Algolia’s UI libraries instead:
Install the JavaScript API client
The Algolia JavaScript API client requires Node.js version 8.0 or higher.
The API client supports all popular browsers, including Internet
Explorer 11 and newer. Older browsers require polyfills for:
Promise
, Object.entries
, and Object.assign
.
You can include these polyfills in your HTML with Polyfill.io.
1
<script src="https://polyfill.io/v3/polyfill.min.js?features=Promise%2CObject.entries%2CObject.assign"></script>
Polyfill.io is a third-party CDN. We are not able to provide support regarding third party services.
Install via npm (recommended)
The recommended method to install the JavaScript API client is from npm.
1
npm install algoliasearch
The npm package ships two different versions of the API client:
algoliasearch-lite
: a search only version in a small bundlealgoliasearch
: the default version for all operations, including indexing, search, and personalization
Both versions come as UMD
and ESM
modules.
Include from a content delivery network
For quick prototyping or exploration, you can also include the algoliasearch
package
in a <script>
tag from a content delivery network.
1
2
3
4
5
<!-- search only version -->
<script src="https://cdn.jsdelivr.net/npm/algoliasearch@4.5.1/dist/algoliasearch-lite.umd.js"></script>
<!-- default version -->
<script src="https://cdn.jsdelivr.net/npm/algoliasearch@4.5.1/dist/algoliasearch.umd.js"></script>
If you’re using JavaScript (ES6) modules, use these packages:
1
2
3
4
5
6
7
<script type="module">
// search only version
import algoliasearch from 'https://cdn.jsdelivr.net/npm/algoliasearch@4/dist/algoliasearch-lite.esm.browser.js';
// default version
import algoliasearch from 'https://cdn.jsdelivr.net/npm/algoliasearch@4/dist/algoliasearch.esm.browser.js';
</script>
jsDelivr is a third-party CDN. We are not able to provide support regarding third party services.
Test your installation
If you haven’t already, create an Algolia account and create a new Algolia app to get started.
To test whether you can connect to Algolia, run a simple program that adds a record to a new index, searches the index, and print the results.
-
Copy the following code sample into a text editor. If you’re signed in, the code samples below show your Algolia application ID and API key. If you’re not signed in, replace
YourApplicationID
with your Algolia application ID andYourAdminAPIKey
with your Admin API key. You can find both in your Algolia account.Copy1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// hello_algolia.js const algoliasearch = require('algoliasearch') // Connect and authenticate with your Algolia app const client = algoliasearch('YourApplicationID', 'YourAdminAPIKey') // Create a new index and add a record const index = client.initIndex('test_index') const record = { objectID: 1, name: 'test_record' } index.saveObject(record).wait() // Search the index and print the results index .search('test_record') .then(({ hits }) => console.log(hits[0]))
-
Save the file as
hello_algolia.js
. Go to the directory with the file you just created and run inside a terminal:Copy1
node hello_algolia.js
-
If the program ran successfully, you should see:
Copy1 2 3 4 5 6
{ name: 'test_record', objectID: '1', _highlightResult: { ... }
You can inspect your index now in the Algolia dashboard.
Next steps
Now you can interact with the Algolia Search API, you can look at the available methods, for example, for search or indexing.
Other APIs, for example for Algolia Recommend or Analytics, come with their own clients. To get an overview, see Initialize the API client.