Install
Authenticate
Keep the API root and credential in environment variables:List projects
The runnable quickstart constructs the client and begins with a real read againstGET /projects:
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Install and authenticate the TypeScript SDK, then list projects.
npm install @bisibility/sdk
export BISIBILITY_API_KEY="your-api-key"
export BISIBILITY_BASE_URL="https://your-host.example/api/v1"
GET /projects:
const client = new BisibilityClient({
apiKey: requiredEnv("BISIBILITY_API_KEY"),
baseUrl: requiredEnv("BISIBILITY_BASE_URL"),
});
let keywordId: string | undefined;
try {
console.log("Listing projects");
const projects = await client.listProjects();