An open API service indexing awesome lists of open source software.

https://github.com/tembo-io/api-client-typescript

Typescript client for Tembo Cloud's platform API
https://github.com/tembo-io/api-client-typescript

api client sdk typescript

Last synced: about 1 year ago
JSON representation

Typescript client for Tembo Cloud's platform API

Awesome Lists containing this project

README

          

@tembo-io/api-client

A Typescript client for connecting to Tembo Cloud's platform API

## Usage

```shell
npm i @tembo-io/api-client
```

```ts
import { createDefaultApiClient } from "@tembo-io/api-client";

const client = createDefaultApiClient({
apiKey: process.env.TEMPO_API_KEY,
});

const instances = await client.createInstance(...);
```