Extensible connector framework for syncing your documents, wikis, tickets, and conversations into one searchable knowledge base.
Live|New integrations added regularly
Connect with OAuth or API key in seconds
Select folders, channels, or repositories to sync
Documents are indexed and ready to search
Our intelligent sync engine keeps your knowledge base fresh with minimal overhead, preserving permissions and detecting changes in real-time.
Changes in source systems are detected and indexed within minutes.
Only new or modified content is processed, minimizing resource usage.
Document permissions from source systems are preserved and enforced.
Backfill years of historical data with our bulk import capabilities.
Need to connect a proprietary system or custom database? Our Connector SDK makes it easy to build, test, and deploy custom integrations.
Connect any API with our flexible adapter framework
Receive push notifications for real-time updates
Bulk upload files via S3, SFTP, or direct upload
Custom connector development available for Enterprise plans
import { Connector } from "@lakehouse/sdk";
export default new Connector({
name: "custom-crm",
auth: { type: "oauth2" },
async fetchDocuments(cursor) {
const response = await this.client.get(
"/api/documents",
{ after: cursor }
);
return {
documents: response.data,
nextCursor: response.pagination.next,
};
},
async onWebhook(event) {
// Handle real-time updates
if (event.type === "document.updated") {
await this.sync(event.documentId);
}
},
});Start your free trial and connect your first data source in under 5 minutes.