Getting started
Learn how to get TitleDock set up in your workspace and sync your contacts in under thirty minutes.
Quick start
Step-by-step guides to connecting your accounts and installing the browser extension.
Core concepts
Learn how TitleDock's bi-directional sync and smart group engine works.
Integrations
Connect TitleDock with your existing tools like Salesforce, HubSpot, and more.
API reference
Programmatic access to your contacts, groups, and mail merge capabilities.
Quick start
Get up and running with TitleDock by installing our browser extension or desktop app. Our platform integrates directly with your existing contact providers to provide a unified view of your network.
Installing dependencies
For developers looking to integrate TitleDock into their own applications, we provide a robust SDK.
npm install @titledock/sdkConfiguring the client
Initialize the client with your API key to start making requests.
import { TitleDock } from '@titledock/sdk'
const client = new TitleDock({
apiKey: process.env.TITLEDOCK_API_KEY,
})