The Taktoria API

Taktoria is a platform of workplace apps that share one workspace, one member list and one bill: LaunchCal for product launches, OKR Hub for objectives, Dory for meeting Q&A, Go Links for short internal links, and Memegen.

The API covers the platform and all five apps. Every scope a key can be granted has endpoints behind it: if the key form offers it, something serves it.

Everything the Taktoria dashboard does, the API does. The dashboard is a client of these same endpoints, so anything you can click you can also automate: adding a launch, generating its review checklist, recording a reviewer’s decision, capturing a post-launch learning, or assigning a seat.

Base URL

https://app.taktoria.com/api/v1

Quick start

curl https://app.taktoria.com/api/v1/launches \
-H "Authorization: Bearer $TAKTORIA_API_KEY"
import { TaktoriaClient } from "@taktoria/node";
const taktoria = new TaktoriaClient({ token: process.env.TAKTORIA_API_KEY });
const launch = await taktoria.launches.create({
name: "Smart Email",
plannedLaunchDate: "2026-11-14",
generateSteps: true,
});

Creating a launch with generateSteps: true copies your organization’s launch step template onto it, back-schedules every review from the planned launch date, and drops each step into the right reviewer’s queue: the same thing the “Add Launch Steps” button does in the app.