example-data.com

kanban-boards / #60

projectId
projects/38
name
Main Board
slug
swift-lakin-user-onboarding-main-board
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/kanban-boards/60"
)
kanban_board = res.json()
{
  "id": 60,
  "projectId": 38,
  "name": "Main Board",
  "slug": "swift-lakin-user-onboarding-main-board",
  "createdAt": "2025-07-25T06:51:05.875Z",
  "updatedAt": "2025-07-29T17:35:16.619Z"
}
Draftbit