Learning Objectives
- userId
-
Sandrine Osinski @sandrine.osinski
- name
- Learning Objectives
- isArchived
- true
- createdAt
- updatedAt
Overview
todo-lists / #157
Learning Objectives
#157
Request
curl example
curl -sS \ "https://example-data.com/api/v1/todo-lists/157" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/todo-lists/157" ); 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/157"
);
const todoList = (await res.json()) as TodoList; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists/157"
)
todo_list = res.json() Response
{
"id": 157,
"userId": 157,
"name": "Learning Objectives",
"isArchived": true,
"createdAt": "2026-03-06T09:37:50.940Z",
"updatedAt": "2026-04-22T07:11:48.259Z"
}