example-data.com

kanban-boards / #82

projectId
projects/54
name
Bug Tracker
slug
ratke-kub-mobile-app-v2-bug-tracker
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/kanban-boards/82"
)
kanban_board = res.json()
{
  "id": 82,
  "projectId": 54,
  "name": "Bug Tracker",
  "slug": "ratke-kub-mobile-app-v2-bug-tracker",
  "createdAt": "2025-12-24T12:25:08.160Z",
  "updatedAt": "2026-03-19T03:07:11.566Z"
}
Draftbit