Back to Typesense

API Clients

docs-site/content/0.13.0/api/api-clients.md

latest1.0 KB
Original Source

API Clients

We have client libraries for:

We also have the following community-contributed client libraries:

We recommend that you use our API client if it's available for your language. It's also easy to interact with Typesense through its simple, RESTful HTTP API.

<Tabs :tabs="['JavaScript','Python','Ruby']"> <template v-slot:JavaScript>
js
// Node.js
npm install typesense @babel/runtime

// Browser
<script src="dist/typesense.min.js"></script>
</template> <template v-slot:Python>
py
pip install typesense
</template> <template v-slot:Ruby>
rb
gem install typesense
</template> </Tabs>

If you're using our JavaScript client to access Typesense directly from the browser, be sure to start the Typesense server with the --enable-cors flag.