Urbs considero trepide carbo toties amoveo?
- quizId
- quizzes/10
- text
- Urbs considero trepide carbo toties amoveo?
- kind
- true_false
- options
- True False
- correctAnswer
- False
- sortOrder
- 8
- createdAt
Overview
quiz-questions / #72
Request
curl example
curl -sS \ "https://example-data.com/api/v1/quiz-questions/72" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/quiz-questions/72" ); 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/72"
);
const quizQuestion = (await res.json()) as QuizQuestion; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/quiz-questions/72"
)
quiz_question = res.json() Response
{
"id": 72,
"quizId": 10,
"text": "Urbs considero trepide carbo toties amoveo?",
"kind": "true_false",
"options": [
"True",
"False"
],
"correctAnswer": "False",
"sortOrder": 8,
"createdAt": "2025-08-14T01:34:12.549Z"
}