# 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 ```bash npm i @skribby/sdk ``` ## Quick Start ```ts 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](/ts-sdk/examples) and [API Reference](/ts-sdk/api-reference) to deepdive into all options and functionalities.