Help & Support Studio
Get instant, context-aware engineering solutions from Pulse AI or submit priority escalation tickets.
Interactive Developer Knowledge Base
Instant answers and SDK patterns to keep your application running smoothly.
Install our lightweight TypeScript SDK via npm or pnpm. Initialize the client using your project API key and database cluster endpoint URL found in your API Keys studio.
import { PulsbaseClient } from '@pulsbase/sdk';
const db = new PulsbaseClient({
apiKey: process.env.PULSBASE_API_KEY,
endpoint: 'https://api.pulsbase.com/v1'
});
const users = await db.query('SELECT * FROM users WHERE active = ?', [true]);