example-data.com

kanban-boards / #6

projectId
projects/4
name
Backlog
slug
lakin-group-dashboard-overhaul-backlog
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/kanban-boards/6"
)
kanban_board = res.json()
{
  "id": 6,
  "projectId": 4,
  "name": "Backlog",
  "slug": "lakin-group-dashboard-overhaul-backlog",
  "createdAt": "2026-01-02T16:39:15.899Z",
  "updatedAt": "2026-01-13T13:29:27.299Z"
}
Draftbit