Install
To install the Deno SDK you only have to import it from deno.land.Make sure to install the latest version of the SDK.
Get your secret key
You can obtain your secret key from your dashboard.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Learn how to integrate Kobble using our Deno SDK.
import { Kobble } from 'https://deno.land/x/kobble_admin@v2.0.0/index.ts';
npm install @kobbleio/admin

import { Kobble } from 'https://deno.land/x/kobble_admin@v2.0.0/index.ts';
const main = async () => {
const kobble = new Kobble('YOUR_SECRET_KEY');
const whoami = await kobble.whoami();
console.log(whoami);
}