example-data.com
Menu
Browse docs and collections

Overview

kanban-boards / #26

Bug Tracker

projectId
projects/17
name
Bug Tracker
slug
mcglynn-bogisich-and-toy-api-migration-bug-tracker
createdAt
updatedAt

Component variants

Related

References

Referenced by

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/kanban-boards/26"
);
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/26"
);
const kanbanBoard = (await res.json()) as KanbanBoard;

Python example

import requests

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

Response

{
  "id": 26,
  "projectId": 17,
  "name": "Bug Tracker",
  "slug": "mcglynn-bogisich-and-toy-api-migration-bug-tracker",
  "createdAt": "2025-06-07T07:01:05.301Z",
  "updatedAt": "2025-09-15T09:42:30.166Z"
}