kanban-boards / #52
- projectId
- projects/33
- name
- Main Board
- slug
- kerluke-wisozk-and-ratke-data-pipeline-main-board
- createdAt
- updatedAt
Component variants
Medium
Main Board
#52
Small
kanban-boards/52 Related
References
curl -sS \
"https://example-data.com/api/v1/kanban-boards/52" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/kanban-boards/52"
);
const kanbanBoard = await res.json();import type { KanbanBoard } from "https://example-data.com/types/kanban-boards.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/kanban-boards/52"
);
const kanbanBoard = (await res.json()) as KanbanBoard;import requests
res = requests.get(
"https://example-data.com/api/v1/kanban-boards/52"
)
kanban_board = res.json() {
"id": 52,
"projectId": 33,
"name": "Main Board",
"slug": "kerluke-wisozk-and-ratke-data-pipeline-main-board",
"createdAt": "2025-06-15T04:15:02.377Z",
"updatedAt": "2026-04-29T00:58:40.398Z"
}