example-data.com

kanban-boards / #112

projectId
projects/73
name
Sprint Board
slug
maggio-and-sons-ci-cd-pipeline-sprint-board
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/kanban-boards/112"
)
kanban_board = res.json()
{
  "id": 112,
  "projectId": 73,
  "name": "Sprint Board",
  "slug": "maggio-and-sons-ci-cd-pipeline-sprint-board",
  "createdAt": "2025-09-01T17:14:53.796Z",
  "updatedAt": "2025-11-27T05:37:40.820Z"
}
Draftbit