example-data.com

kanban-boards / #101

projectId
projects/66
name
Sprint Board
slug
dach-russel-ci-cd-pipeline-sprint-board
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/kanban-boards/101"
)
kanban_board = res.json()
{
  "id": 101,
  "projectId": 66,
  "name": "Sprint Board",
  "slug": "dach-russel-ci-cd-pipeline-sprint-board",
  "createdAt": "2025-12-26T05:56:08.397Z",
  "updatedAt": "2026-05-06T16:38:58.267Z"
}
Draftbit