Developer Portal
Build with SUBLAKE
Everything you need to integrate SUBLAKE into your applications.
REST API
Complete API reference documentation.
SDKs
Official SDKs for popular languages.
Authentication
OAuth 2.0 and API key authentication.
Guides
Step-by-step integration guides.
Quick Start
# Install the SUBLAKE SDK
npm install @sublake/sdk
# Initialize the client
import { Sublake } from '@sublake/sdk';
const client = new Sublake({
apiKey: process.env.SUBLAKE_API_KEY
});
# Create a contact
const contact = await client.contacts.create({
email: 'john@example.com',
firstName: 'John',
lastName: 'Doe'
});