example-data.com

kanban-boards / #51

projectId
projects/32
name
Sprint Board
slug
kerluke-wisozk-and-ratke-reporting-module-sprint-board
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/kanban-boards/51"
)
kanban_board = res.json()
{
  "id": 51,
  "projectId": 32,
  "name": "Sprint Board",
  "slug": "kerluke-wisozk-and-ratke-reporting-module-sprint-board",
  "createdAt": "2025-10-24T10:40:36.498Z",
  "updatedAt": "2026-01-22T02:43:47.506Z"
}
Draftbit