progress
progress
Page 3 of 10.
- userId
-
Filiberto Fay @filiberto.fay59
- courseId
- courses/62
- lessonId
- —
- state
- in_progress
- completedAt
- —
- updatedAt
- createdAt
- userId
-
Marlin Goldner @marlin_goldner6
- courseId
- courses/5
- lessonId
- lessons/32
- state
- in_progress
- completedAt
- —
- updatedAt
- createdAt
- userId
-
Zachariah Herzog @zachariah_herzog42
- courseId
- courses/48
- lessonId
- —
- state
- not_started
- completedAt
- —
- updatedAt
- createdAt
- userId
-
Jermain Kshlerin @jermain_kshlerin51
- courseId
- courses/59
- lessonId
- —
- state
- not_started
- completedAt
- —
- updatedAt
- createdAt
- userId
-
Queen Lubowitz @queen.lubowitz76
- courseId
- courses/61
- lessonId
- lessons/413
- state
- not_started
- completedAt
- —
- updatedAt
- createdAt
- userId
-
Webster Skiles @webster_skiles39
- courseId
- courses/68
- lessonId
- —
- state
- in_progress
- completedAt
- —
- updatedAt
- createdAt
Showing first 6 of 24 on this page.
curl -sS \
"https://example-data.com/api/v1/progress?limit=25"const res = await fetch(
"https://example-data.com/api/v1/progress?limit=25"
);
const { data, meta } = await res.json();import type { Progress, ListEnvelope } from "https://example-data.com/types/progress.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/progress?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Progress>;import requests
res = requests.get(
"https://example-data.com/api/v1/progress",
params={"limit": 25},
)
data = res.json() {
"data": [
{
"id": 49,
"userId": 92,
"courseId": 62,
"lessonId": null,
"state": "in_progress",
"completedAt": null,
"updatedAt": "2026-05-18T11:22:08.064Z",
"createdAt": "2026-04-06T16:47:12.294Z"
},
{
"id": 50,
"userId": 160,
"courseId": 5,
"lessonId": 32,
"state": "in_progress",
"completedAt": null,
"updatedAt": "2025-08-06T04:18:42.805Z",
"createdAt": "2025-06-25T07:01:12.209Z"
},
{
"id": 51,
"userId": 15,
"courseId": 48,
"lessonId": null,
"state": "not_started",
"completedAt": null,
"updatedAt": "2025-10-11T23:25:10.279Z",
"createdAt": "2025-10-11T23:25:10.279Z"
}
],
"meta": {
"page": 3,
"limit": 24,
"total": 800,
"totalPages": 34
},
"links": {
"self": "/api/v1/progress?page=3",
"next": "/api/v1/progress?page=4",
"prev": "/api/v1/progress?page=2"
}
}