TypeScript SDK
@pontx/sendbird-chat-platform
The operator-published SDK for Sendbird Chat Platform server-side API v3 covers every Endpoint in the current PontxSpec.
SDK quality gate
The source for v0.1.0 passed its complete unit suite and built-package E2E on Node.js 18 / 20 / 22.
Install and call
The SDK is produced by Pontx and typechecked and built before publication.
pnpm add @pontx/sendbird-chat-platformimport { createSendbirdChatPlatformClient } from "@pontx/sendbird-chat-platform";
const client = createSendbirdChatPlatformClient({
appId: process.env.SENDBIRD_APP_ID,
apiToken: process.env.SENDBIRD_API_TOKEN,
});
const user = await client.users.viewAUser({ userId: "user_id_123" });Command-line access
This npm package also publishes a dedicated CLI for the API. Use dry-run to inspect parameters, then supply your own provider credentials when required.
pnpm add --global @pontx/sendbird-chat-platform
pontx-sendbird-chat-platform call users view-a-user --dry-run