Vulgo ustulo sint abutor illum atavus thesis in quos cur curso?
- quizId
- quizzes/33
- text
- Vulgo ustulo sint abutor illum atavus thesis in quos cur curso?
- kind
- short_answer
- options
-
- correctAnswer
- the main concept
- sortOrder
- 6
- createdAt
Overview
quiz-questions / #203
Request
curl example
curl -sS \ "https://example-data.com/api/v1/quiz-questions/203" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/quiz-questions/203" ); 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/203"
);
const quizQuestion = (await res.json()) as QuizQuestion; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/quiz-questions/203"
)
quiz_question = res.json() Response
{
"id": 203,
"quizId": 33,
"text": "Vulgo ustulo sint abutor illum atavus thesis in quos cur curso?",
"kind": "short_answer",
"options": [],
"correctAnswer": "the main concept",
"sortOrder": 6,
"createdAt": "2024-07-20T03:04:09.493Z"
}