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
- Host: GitHub
- URL: https://github.com/tembo-io/api-client-typescript
- Owner: tembo-io
- License: mit
- Created: 2024-12-03T21:05:01.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-04T17:10:09.000Z (over 1 year ago)
- Last Synced: 2025-05-01T06:38:27.841Z (about 1 year ago)
- Topics: api, client, sdk, typescript
- Language: TypeScript
- Homepage: https://api.tembo.io/swagger-ui/#/
- Size: 83 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Security: .github/SECURITY.md
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(...);
```