example-data.com

kanban-boards / #118

projectId
projects/77
name
Main Board
slug
cormier-rogahn-and-bogisich-user-onboarding-main-board
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/kanban-boards/118"
)
kanban_board = res.json()
{
  "id": 118,
  "projectId": 77,
  "name": "Main Board",
  "slug": "cormier-rogahn-and-bogisich-user-onboarding-main-board",
  "createdAt": "2025-08-02T07:53:43.813Z",
  "updatedAt": "2026-05-01T01:51:18.462Z"
}
Draftbit