Kairos ConnectKairos Connect

One workspace for your entire team. Tasks, docs, chat, and AI — all connected.

Product

  • Features
  • Pricing
  • API
  • Changelog

Solutions

  • Enterprise
  • Startups
  • Agencies

Company

  • About Us
  • Careers
  • Blog
  • Contact

Legal

  • Privacy Policy
  • Terms of Service
  • Security
Kairos ConnectKairos Connect

One workspace. Zero app switching.

Product
  • Features
  • Pricing
  • API
  • Changelog
Solutions
  • Enterprise
  • Startups
  • Agencies
Company
  • About Us
  • Careers
  • Blog
  • Contact
Legal
  • Privacy Policy
  • Terms of Service
  • Security

© 2026 Kairos Connect B.V. All rights reserved.

Kairos ConnectKairos Connect

Core Features

  • Features Overview

    See all features at a glance

  • Tasks & Projects

    Kanban, lists, timelines & sprints

  • Goals & OKRs

    AI-powered goal analysis

  • Team Chat

    E2E encrypted messaging

  • Whiteboard

    Infinite canvas, real-time collab

Platforms

  • Forms

    Drag & drop form builder

  • CRM

    Pipeline, deals & contacts

  • Documents

    6 views, fast databases

  • AI Assistant

    Natural language tasks

  • Mobile Apps

    iOS & Android

  • Desktop Apps

    macOS, Windows, Linux

View all features→
For StartupsFor Small BusinessFor EnterpriseFor Remote Teams
Pricing
vs Asanavs ClickUpvs Notion
Blog
Getting Started
Quick StartAuthentication
API Reference
TasksGoalsCommentsTeamDocuments
SDKs
JavaScript/TypeScriptPythonGo
Getting Started

Quick Start

Get up and running with the Kairos API in under 5 minutes.

1

Create an API Key

Generate an API key from your team settings in the Kairos dashboard.

2

Install the SDK

Choose your preferred language and install the official SDK.

3

Make Your First Request

Initialize the client and start interacting with the API.

1Create an API Key

First, you'll need to create an API key to authenticate your requests:

  1. Go to your Team Settings
  2. Navigate to the Developer tab
  3. Click Create Key
  4. Select the scopes your integration needs
  5. Copy and securely store your API key
Keep your API key secret
Your API key grants access to your team's data. Never expose it in client-side code or public repositories.

2Install the SDK

Install the official SDK for your programming language:

javascript
npm install @kairos-connect/sdk
python
pip install kairos-sdk
go
go get github.com/kairos-connect/kairos-go
Bun
bun add @kairos-connect/sdk

3Make Your First Request

Initialize the client and start making API requests:

index.ts
typescript
1import { Kairos } from '@kairos-connect/sdk';
2
3const kairos = new Kairos({
4 apiKey: process.env.KAIROS_API_KEY,
5});
6
7// List in-progress tasks
8const { data: tasks, pagination } = await kairos.tasks.list({
9 status: 'in_progress',
10 limit: 10,
11});
12
13console.log(`Found ${pagination.total} tasks`);
14
15// Create a new task
16const task = await kairos.tasks.create({
17 title: 'Review quarterly report',
18 priority: 'high',
19 goal_id: 'goal_abc123',
20});
21console.log(`Created: ${task.id}`);
Environment variables
Store your API key in an environment variable like KAIROS_API_KEY rather than hardcoding it in your application.

Next Steps

Authentication

Learn about API key scopes and authentication methods

Tasks API

Complete reference for the Tasks API endpoints