example-data.com

kanban-boards / #95

projectId
projects/61
name
Release Tracker
slug
ziemann-llc-mobile-app-v2-release-tracker
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/kanban-boards/95"
)
kanban_board = res.json()
{
  "id": 95,
  "projectId": 61,
  "name": "Release Tracker",
  "slug": "ziemann-llc-mobile-app-v2-release-tracker",
  "createdAt": "2025-07-05T03:07:00.580Z",
  "updatedAt": "2026-03-24T14:57:27.935Z"
}
Draftbit