example-data.com

kanban-boards / #11

projectId
projects/8
name
Main Board
slug
cremin-kautzer-reporting-module-main-board
createdAt
updatedAt

Component variants

Related

References

curl -sS \
  "https://example-data.com/api/v1/kanban-boards/11" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/kanban-boards/11"
);
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/11"
);
const kanbanBoard = (await res.json()) as KanbanBoard;
import requests

res = requests.get(
    "https://example-data.com/api/v1/kanban-boards/11"
)
kanban_board = res.json()
{
  "id": 11,
  "projectId": 8,
  "name": "Main Board",
  "slug": "cremin-kautzer-reporting-module-main-board",
  "createdAt": "2025-11-15T18:48:55.364Z",
  "updatedAt": "2026-02-24T03:47:53.010Z"
}
Draftbit