example-data.com

kanban-boards / #47

projectId
projects/30
name
Backlog
slug
predovic-prosacco-and-o-hara-data-pipeline-backlog
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/kanban-boards/47"
)
kanban_board = res.json()
{
  "id": 47,
  "projectId": 30,
  "name": "Backlog",
  "slug": "predovic-prosacco-and-o-hara-data-pipeline-backlog",
  "createdAt": "2026-01-14T03:40:25.085Z",
  "updatedAt": "2026-02-23T00:36:22.989Z"
}
Draftbit