Everything you need to integrate Kairos Connect into your applications. Comprehensive guides, API reference, and code examples.
Our SDKs make it easy to integrate Kairos into your application. Install the package, initialize the client, and start making requests.
// Install the SDK
npm install @kairos-connect/sdk
// Initialize the client
import { Kairos } from '@kairos-connect/sdk';
const kairos = new Kairos({
apiKey: process.env.KAIROS_API_KEY,
});
// Create a task
const task = await kairos.tasks.create({
title: 'Review quarterly report',
description: 'Analyze Q4 metrics and prepare summary',
priority: 'high',
due_date: '2024-01-15',
});
console.log('Created task:', task.id);Detailed guides for every aspect of the Kairos Connect API.
Can't find what you're looking for? Our team is here to help you integrate Kairos Connect.