example-data.com

quizzes / #117

courseId
courses/76
lessonId
lessons/515
title
Quick Quiz — The Complete Guide to Typography
description
Temptatio abscido audio vestrum illo impedit. Repellendus illum sub appello amitto vicissitudo surgo.
passingScorePercent
70
timeLimitMinutes
createdAt
updatedAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/quizzes/117" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/quizzes/117"
);
const quizze = await res.json();
import type { Quizze } from "https://example-data.com/types/quizzes.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/quizzes/117"
);
const quizze = (await res.json()) as Quizze;
import requests

res = requests.get(
    "https://example-data.com/api/v1/quizzes/117"
)
quizze = res.json()
{
  "id": 117,
  "courseId": 76,
  "lessonId": 515,
  "title": "Quick Quiz — The Complete Guide to Typography",
  "description": "Temptatio abscido audio vestrum illo impedit. Repellendus illum sub appello amitto vicissitudo surgo.",
  "passingScorePercent": 70,
  "timeLimitMinutes": null,
  "createdAt": "2024-08-16T15:30:14.860Z",
  "updatedAt": "2024-10-15T14:55:14.232Z"
}
Draftbit