example-data.com

kanban-boards / #12

projectId
projects/8
name
Release Tracker
slug
cremin-kautzer-reporting-module-release-tracker
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/kanban-boards/12"
)
kanban_board = res.json()
{
  "id": 12,
  "projectId": 8,
  "name": "Release Tracker",
  "slug": "cremin-kautzer-reporting-module-release-tracker",
  "createdAt": "2025-11-05T05:52:42.618Z",
  "updatedAt": "2026-05-20T06:26:40.333Z"
}
Draftbit