Skribby
TypeScript SDKUpdated 3 weeks ago

Index

If you are working in JavaScript or TypeScript, the Skribby SDK provides typed access to the meeting bot API.

Installation

npm i @skribby/sdk

Quick Start

import { createClient } from '@skribby/sdk'; const client = createClient({ api_key: 'SKRIBBY_API_KEY', }); const bot = await client.createBot({ bot_name: 'Alex from Acme', meeting_url: 'https://meet.google.com/abc-defg-hij', service: 'gmeet', transcription_model: 'groq/whisper-large-v3-turbo', custom_metadata: { request_id: 'req_123', customer_id: 'acme-42', }, });

Refer to Examples for common workflows and the API Reference for the available classes, methods, and options.