Release Tracker
- projectId
- projects/27
- name
- Release Tracker
- slug
- predovic-prosacco-and-o-hara-dashboard-overhaul-release-tracker
- createdAt
- updatedAt
Overview
kanban-boards / #42
Release Tracker
#42
Request
curl example
curl -sS \ "https://example-data.com/api/v1/kanban-boards/42" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/kanban-boards/42" ); 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/42"
);
const kanbanBoard = (await res.json()) as KanbanBoard; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/kanban-boards/42"
)
kanban_board = res.json() Response
{
"id": 42,
"projectId": 27,
"name": "Release Tracker",
"slug": "predovic-prosacco-and-o-hara-dashboard-overhaul-release-tracker",
"createdAt": "2026-04-25T10:36:43.202Z",
"updatedAt": "2026-04-28T21:16:32.635Z"
}