Developer Portal
Portal único para docs, playgrounds, examples, troubleshooting e self-service técnico.
Portal
Hub principal para docs, playgrounds e downloads.
Getting Started
Jornada completa para integrar o Chatbeep em menos de 10 minutos.
Widget Playground
Configurator com preview ao vivo, snippet e gerador por stack.
API Playground
Operações maduras da API v1 com code samples e Try It.
SDK Playground
Pacotes oficiais, quick starts e smoke workflow por stack.
ChatFlows Playground
Simulador público de fluxos com variáveis, contexto e transições.
Examples
Biblioteca de exemplos para suporte, lead capture, FAQ e integrações.
Troubleshooting
Checks operacionais para widget, auth, billing, push e fiscal.
SDK Playground
OpenAPI como fonte única dos SDKs oficiais
Os pacotes abaixo já refletem o programa oficial de SDKs preparado a partir da OpenAPI v1, com smoke tests e artefactos prontos para exportação futura.
composer · Packagist
PHP SDK
chatbeep/php-sdk
Quick Start
var client = new ChatbeepClient("https://sandbox.chatbeep.app/api/v1");
var health = await client.HealthAsync();
Smoke
php tests/SmokeTest.php
Pack Check
composer validate --no-check-publish
composer · Packagist
Laravel SDK
chatbeep/laravel-sdk
Quick Start
var client = new ChatbeepClient("https://sandbox.chatbeep.app/api/v1");
var health = await client.HealthAsync();
Smoke
php tests/SmokeTest.php
Pack Check
composer validate --no-check-publish
npm · npm
Node SDK
@chatbeep/node-sdk
Quick Start
var client = new ChatbeepClient("https://sandbox.chatbeep.app/api/v1");
var health = await client.HealthAsync();
Smoke
node tests/smoke.test.mjs
Pack Check
npm pack --dry-run
npm · npm
JavaScript SDK
@chatbeep/js
Quick Start
var client = new ChatbeepClient("https://sandbox.chatbeep.app/api/v1");
var health = await client.HealthAsync();
Smoke
node tests/smoke.test.mjs
Pack Check
npm pack --dry-run
nuget · NuGet
.NET SDK
Chatbeep.Sdk
Quick Start
var client = new ChatbeepClient("https://sandbox.chatbeep.app/api/v1");
var health = await client.HealthAsync();
Smoke
dotnet build ./tests/Chatbeep.Sdk.SmokeTests.csproj --framework net8.0 --nologo
Pack Check
dotnet msbuild Chatbeep.Sdk.csproj -t:Pack -p:PackageOutputPath=../../build/sdk-packages/dotnet -nologo