Mid-Course Quiz — Fundamentals of SEO
- courseId
- courses/66
- lessonId
- —
- title
- Mid-Course Quiz — Fundamentals of SEO
- description
- Inventore creptio decet dicta debeo avarus distinctio.
- passingScorePercent
- 60
- timeLimitMinutes
- 55
- createdAt
- updatedAt
Overview
quizzes / #104
Request
curl example
curl -sS \ "https://example-data.com/api/v1/quizzes/104" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/quizzes/104" ); 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/104"
);
const quiz = (await res.json()) as Quiz; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/quizzes/104"
)
quizze = res.json() Response
{
"id": 104,
"courseId": 66,
"lessonId": null,
"title": "Mid-Course Quiz — Fundamentals of SEO",
"description": "Inventore creptio decet dicta debeo avarus distinctio.",
"passingScorePercent": 60,
"timeLimitMinutes": 55,
"createdAt": "2025-07-02T13:19:06.099Z",
"updatedAt": "2025-08-22T01:37:42.708Z"
}