Authenticating your requests to the SDK
Copy API Key
npm install honeyhive
interface HoneyHiveConfig { bearerAuth: string; serverURL?: string; // Optional for cloud, required for self-hosted/dedicated deployments } import { HoneyHive } from "honeyhive"; const sdk = new HoneyHive({ bearerAuth: "<YOUR_BEARER_TOKEN_HERE>", serverURL: "HONEYHIVE_SERVER_URL" } as HoneyHiveConfig);
Copy Project ID
Was this page helpful?