example-data.com

kanban-boards / #104

projectId
projects/68
name
Bug Tracker
slug
prohaska-wiza-analytics-platform-bug-tracker
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/kanban-boards/104"
)
kanban_board = res.json()
{
  "id": 104,
  "projectId": 68,
  "name": "Bug Tracker",
  "slug": "prohaska-wiza-analytics-platform-bug-tracker",
  "createdAt": "2026-01-28T21:25:45.825Z",
  "updatedAt": "2026-03-02T11:11:29.741Z"
}
Draftbit