npm install unibook-client
yarn add unibook-client
import { Client } from "unibook-client";
const client = new Client({
auth: "UniBook API Key",
});
async () => {
console.log(
await client.GetUser({
userId: "me",
})
);
};