docs-site/content/0.21.0/api/api-clients.md
The following client libraries are thin wrappers around Typesense's RESTful APIs and provide an idiomatic way to make Typesense API calls from your preferred language.
:::tip Typesense has a RESTful API so it can be used with any HTTP library in any programming language, even the ones not listed below. The client libraries are just thin wrappers around Typesense's HTTP API. :::
We have client libraries for:
We also have the following community-contributed client libraries:
We also have the following community-contributed framework integrations:
<Tabs :tabs="['JavaScript','PHP','Python','Ruby','Dart', 'Java']"> <template v-slot:JavaScript>// npm install typesense @babel/runtime
// Browser
<script src="dist/typesense.min.js"></script>
composer require php-http/curl-client typesense/typesense-php
pip install typesense
gem install typesense
// With Dart:
// $ dart pub add typesense
// With Flutter:
// $ flutter pub add typesense
// This will add a line like this to your package's pubspec.yaml:
// dependencies:
// typesense: ^0.1.1
// Now in your Dart code, you can use:
import 'package:typesense/typesense.dart';
// Download the JAR file from the releases section in the typesense-java repository.
// (https://github.com/typesense/typesense-java/releases)
// And import it into your project
import org.typesense.api.*;
import org.typesense.models.*;
import org.typesense.resources.*;
We have a community-maintained Postman Collection here: https://github.com/typesense/postman.
Postman is an app that let's you perform HTTP requests by pointing and clicking, instead of having to type them out in the terminal. The Postman Collection above gives you template requests that you can import into Postman, to quickly make API calls to Typesense.