example-data.com

kanban-boards / #109

projectId
projects/72
name
Main Board
slug
maggio-and-sons-mobile-app-v2-main-board
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/kanban-boards/109"
)
kanban_board = res.json()
{
  "id": 109,
  "projectId": 72,
  "name": "Main Board",
  "slug": "maggio-and-sons-mobile-app-v2-main-board",
  "createdAt": "2026-03-26T22:00:50.870Z",
  "updatedAt": "2026-04-08T07:34:58.733Z"
}
Draftbit