Backlog
- userId
-
Diana Murazik @diana.murazik31
- name
- Backlog
- isArchived
- false
- createdAt
- updatedAt
Overview
todo-lists / #125
Backlog
#125
Request
curl example
curl -sS \ "https://example-data.com/api/v1/todo-lists/125" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/todo-lists/125" ); const todoList = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/todo-lists.d.ts https://example-data.com/types/todo-lists.d.ts
import type { TodoList } from "./types/todo-lists";
const res = await fetch(
"https://example-data.com/api/v1/todo-lists/125"
);
const todoList = (await res.json()) as TodoList; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists/125"
)
todo_list = res.json() Response
{
"id": 125,
"userId": 125,
"name": "Backlog",
"isArchived": false,
"createdAt": "2025-07-02T22:51:27.425Z",
"updatedAt": "2025-12-29T11:17:36.949Z"
}