example-data.com

kanban-boards / #89

projectId
projects/58
name
Backlog
slug
ziemann-llc-notification-service-backlog
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/kanban-boards/89"
)
kanban_board = res.json()
{
  "id": 89,
  "projectId": 58,
  "name": "Backlog",
  "slug": "ziemann-llc-notification-service-backlog",
  "createdAt": "2026-04-25T06:55:16.224Z",
  "updatedAt": "2026-05-16T20:35:32.053Z"
}
Draftbit