Backlog
- projectId
- projects/13
- name
- Backlog
- slug
- funk-renner-and-grady-data-pipeline-backlog
- createdAt
- updatedAt
Overview
kanban-boards / #19
Backlog
#19
Request
curl example
curl -sS \ "https://example-data.com/api/v1/kanban-boards/19" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/kanban-boards/19" ); 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/19"
);
const kanbanBoard = (await res.json()) as KanbanBoard; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/kanban-boards/19"
)
kanban_board = res.json() Response
{
"id": 19,
"projectId": 13,
"name": "Backlog",
"slug": "funk-renner-and-grady-data-pipeline-backlog",
"createdAt": "2025-11-29T03:49:12.635Z",
"updatedAt": "2025-12-18T19:14:51.941Z"
}