Placeat vix reprehenderit sopor maxime aestus?
- quizId
- quizzes/92
- text
- Placeat vix reprehenderit sopor maxime aestus?
- kind
- short_answer
- options
-
- correctAnswer
- the expected output
- sortOrder
- 3
- createdAt
Overview
quiz-questions / #576
Request
curl example
curl -sS \ "https://example-data.com/api/v1/quiz-questions/576" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/quiz-questions/576" ); const quizQuestion = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/quiz-questions.d.ts https://example-data.com/types/quiz-questions.d.ts
import type { QuizQuestion } from "./types/quiz-questions";
const res = await fetch(
"https://example-data.com/api/v1/quiz-questions/576"
);
const quizQuestion = (await res.json()) as QuizQuestion; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/quiz-questions/576"
)
quiz_question = res.json() Response
{
"id": 576,
"quizId": 92,
"text": "Placeat vix reprehenderit sopor maxime aestus?",
"kind": "short_answer",
"options": [],
"correctAnswer": "the expected output",
"sortOrder": 3,
"createdAt": "2025-08-21T11:20:45.861Z"
}