example-data.com

kanban-boards / #127

projectId
projects/83
name
Main Board
slug
gleason-kertzmann-dashboard-overhaul-main-board
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/kanban-boards/127"
)
kanban_board = res.json()
{
  "id": 127,
  "projectId": 83,
  "name": "Main Board",
  "slug": "gleason-kertzmann-dashboard-overhaul-main-board",
  "createdAt": "2026-03-09T13:36:46.172Z",
  "updatedAt": "2026-03-11T12:35:08.914Z"
}
Draftbit