Release Tracker
- projectId
- projects/77
- name
- Release Tracker
- slug
- cormier-rogahn-and-bogisich-user-onboarding-release-tracker
- createdAt
- updatedAt
Overview
kanban-boards / #119
Release Tracker
#119
Request
curl example
curl -sS \ "https://example-data.com/api/v1/kanban-boards/119" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/kanban-boards/119" ); const kanbanBoard = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/kanban-boards.d.ts https://example-data.com/types/kanban-boards.d.ts
import type { KanbanBoard } from "./types/kanban-boards";
const res = await fetch(
"https://example-data.com/api/v1/kanban-boards/119"
);
const kanbanBoard = (await res.json()) as KanbanBoard; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/kanban-boards/119"
)
kanban_board = res.json() Response
{
"id": 119,
"projectId": 77,
"name": "Release Tracker",
"slug": "cormier-rogahn-and-bogisich-user-onboarding-release-tracker",
"createdAt": "2025-08-23T20:09:39.960Z",
"updatedAt": "2026-01-18T19:26:58.038Z"
}