todo-lists
todo-lists
Browse 250 todo-lists records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.
- todo-lists/1
- todo-lists/2
- todo-lists/3
- todo-lists/4
- todo-lists/5
- todo-lists/6
- todo-lists/7
- todo-lists/8
- todo-lists/9
- todo-lists/10
- todo-lists/11
- todo-lists/12
- todo-lists/13
- todo-lists/14
- todo-lists/15
- todo-lists/16
- todo-lists/17
- todo-lists/18
- todo-lists/19
- todo-lists/20
- todo-lists/21
- todo-lists/22
- todo-lists/23
- todo-lists/24
-
Books to Read
#1
-
Errands
#2
-
Learning Objectives
#3
-
Personal Goals
#4
-
Personal Goals
#5
-
Long-term Goals
#6
-
Home Projects
#7
-
Fitness Goals
#8
-
Home Projects
#9
-
Personal Goals
#10
-
Follow-ups
#11
-
Books to Read
#12
-
Learning Objectives
#13
-
Ideas
#14
-
Work Tasks
#15
-
Meeting Notes
#16
-
Meeting Notes
#17
-
Travel Plans
#18
-
Fitness Goals
#19
-
Home Projects
#20
-
Meeting Notes
#21
-
Learning Objectives
#22
-
Shopping List
#23
-
Travel Plans
#24
- userId
-
Amina King @amina_king41
- name
- Books to Read
- isArchived
- true
- createdAt
- updatedAt
- userId
-
Conner Bernhard @conner.bernhard33
- name
- Errands
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Cayla Farrell @cayla_farrell
- name
- Learning Objectives
- isArchived
- true
- createdAt
- updatedAt
- userId
-
Webster Skiles @webster_skiles39
- name
- Personal Goals
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Brycen Bayer @brycen_bayer60
- name
- Personal Goals
- isArchived
- false
- createdAt
- updatedAt
- userId
-
Einar Volkman @einar_volkman69
- name
- Long-term Goals
- isArchived
- true
- createdAt
- updatedAt
Showing first 6 of 24 on this page.
curl -sS \
"https://example-data.com/api/v1/todo-lists?limit=25"const res = await fetch(
"https://example-data.com/api/v1/todo-lists?limit=25"
);
const { data, meta } = await res.json();import type { TodoList, ListEnvelope } from "https://example-data.com/types/todo-lists.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/todo-lists?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<TodoList>;import requests
res = requests.get(
"https://example-data.com/api/v1/todo-lists",
params={"limit": 25},
)
data = res.json() {
"data": [
{
"id": 1,
"userId": 2,
"name": "Books to Read",
"isArchived": true,
"createdAt": "2025-05-25T18:37:17.603Z",
"updatedAt": "2025-11-16T12:59:28.848Z"
},
{
"id": 2,
"userId": 3,
"name": "Errands",
"isArchived": false,
"createdAt": "2025-11-10T23:04:53.556Z",
"updatedAt": "2025-12-25T18:04:39.736Z"
},
{
"id": 3,
"userId": 4,
"name": "Learning Objectives",
"isArchived": true,
"createdAt": "2025-09-25T11:11:25.730Z",
"updatedAt": "2025-11-14T21:00:22.030Z"
}
],
"meta": {
"page": 1,
"limit": 25,
"total": 250,
"totalPages": 10
},
"links": {
"self": "/api/v1/todo-lists?page=1",
"first": "/api/v1/todo-lists?page=1",
"last": "/api/v1/todo-lists?page=10",
"next": "/api/v1/todo-lists?page=2",
"prev": null
}
}