api-sdk
Installation
SKILL.md
TypeScript SDK
The Bknd TypeScript SDK provides a type-safe, promise-based client for interacting with Bknd's REST API. Use it for both client-side browser applications and server-side code.
What You'll Learn
- Initialize the Api class with different auth strategies
- Perform CRUD operations on entities
- Handle authentication and token management
- Access media and system APIs
- Use type safety with auto-generated DB types
Quick Start
import { Api } from "bknd";
const api = new Api({ host: "https://api.example.com" });