Module Assessment — Building with Lighting
- courseId
- courses/14
- lessonId
- lessons/104
- title
- Module Assessment — Building with Lighting
- description
- Alienus coerceo hic.
- passingScorePercent
- 75
- timeLimitMinutes
- 42
- createdAt
- updatedAt
Overview
quizzes / #21
Request
curl example
curl -sS \ "https://example-data.com/api/v1/quizzes/21" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/quizzes/21" ); const quiz = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/quizzes.d.ts https://example-data.com/types/quizzes.d.ts
import type { Quiz } from "./types/quizzes";
const res = await fetch(
"https://example-data.com/api/v1/quizzes/21"
);
const quiz = (await res.json()) as Quiz; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/quizzes/21"
)
quizze = res.json() Response
{
"id": 21,
"courseId": 14,
"lessonId": 104,
"title": "Module Assessment — Building with Lighting",
"description": "Alienus coerceo hic.",
"passingScorePercent": 75,
"timeLimitMinutes": 42,
"createdAt": "2025-05-30T12:01:40.827Z",
"updatedAt": "2025-06-16T08:45:19.592Z"
}