example-data.com

kanban-boards / #65

projectId
projects/41
name
Backlog
slug
kovacek-and-sons-reporting-module-backlog
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/kanban-boards/65"
)
kanban_board = res.json()
{
  "id": 65,
  "projectId": 41,
  "name": "Backlog",
  "slug": "kovacek-and-sons-reporting-module-backlog",
  "createdAt": "2025-05-23T18:35:31.882Z",
  "updatedAt": "2026-04-01T05:07:25.027Z"
}
Draftbit