example-data.com

quiz-questions / #157

quizId
26
text
Thermae arbor cedo venio tabernus vociferor esse compello?
kind
short_answer
options
correctAnswer
the main concept
sortOrder
0
createdAt

Component variants

curl -sS \
  "https://example-data.com/api/v1/quiz-questions/157" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/quiz-questions/157"
);
const quizQuestion = await res.json();
import type { QuizQuestion } from "https://example-data.com/types/quiz-questions.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/quiz-questions/157"
);
const quizQuestion = (await res.json()) as QuizQuestion;
import requests

res = requests.get(
    "https://example-data.com/api/v1/quiz-questions/157"
)
quiz_question = res.json()
{
  "id": 157,
  "quizId": 26,
  "text": "Thermae arbor cedo venio tabernus vociferor esse compello?",
  "kind": "short_answer",
  "options": [],
  "correctAnswer": "the main concept",
  "sortOrder": 0,
  "createdAt": "2025-06-24T06:08:21.685Z"
}
Draftbit