Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 318 Bytes

File metadata and controls

18 lines (13 loc) · 318 Bytes
import { Kombo } from "@kombo-api/sdk";

const kombo = new Kombo({
  api_key: "<YOUR_BEARER_TOKEN_HERE>",
});

async function run() {
  const result = await kombo.general.checkApiKey();

  console.log(result);
}

run();