example-data.com
Menu
Browse docs and collections

Overview

kanban-boards / #75

Main Board

projectId
projects/48
name
Main Board
slug
pouros-nikolaus-and-donnelly-legacy-migration-main-board
createdAt
updatedAt

Component variants

Related

References

Referenced by

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/kanban-boards/75" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/kanban-boards/75"
);
const kanbanBoard = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/kanban-boards.d.ts https://example-data.com/types/kanban-boards.d.ts
import type { KanbanBoard } from "./types/kanban-boards";

const res = await fetch(
  "https://example-data.com/api/v1/kanban-boards/75"
);
const kanbanBoard = (await res.json()) as KanbanBoard;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/kanban-boards/75"
)
kanban_board = res.json()

Response

{
  "id": 75,
  "projectId": 48,
  "name": "Main Board",
  "slug": "pouros-nikolaus-and-donnelly-legacy-migration-main-board",
  "createdAt": "2026-05-08T16:36:24.207Z",
  "updatedAt": "2026-05-12T03:03:05.092Z"
}