Skip to content
Last updated

Typescript SDK

Are you already working in Javascript / Typescript or looking to quickly prototype? Then our Typescript SDK will make your implementation much smoother.

Installation

npm i @skribby/sdk

Quick Start

import { createClient } from '@skribby/sdk';

const client = createClient({
  api_key: 'SKRIBBY_API_KEY',
});

const bot = client.createBot({
  bot_name: 'My Meeting Bot',
  meeting_url: 'https://meet.google.com/abc-defg-hij',
  service: 'gmeet',
  transcription_model: 'whisper',
});

That's all you need to get your first meeting bot started. But we're only scratching the surface of what you can do. Refer to Examples and API Reference to deepdive into all options and functionalities.