Hic tametsi tubineus beatae thymum tego caries?
- quizId
- quizzes/9
- text
- Hic tametsi tubineus beatae thymum tego caries?
- kind
- true_false
- options
- True False
- correctAnswer
- False
- sortOrder
- 5
- createdAt
Overview
quiz-questions / #59
Request
curl example
curl -sS \ "https://example-data.com/api/v1/quiz-questions/59" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/quiz-questions/59" ); 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/59"
);
const quizQuestion = (await res.json()) as QuizQuestion; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/quiz-questions/59"
)
quiz_question = res.json() Response
{
"id": 59,
"quizId": 9,
"text": "Hic tametsi tubineus beatae thymum tego caries?",
"kind": "true_false",
"options": [
"True",
"False"
],
"correctAnswer": "False",
"sortOrder": 5,
"createdAt": "2025-03-31T04:30:09.375Z"
}