Quae adeptio bene magnam eum tantillus?
- quizId
- quizzes/51
- text
- Quae adeptio bene magnam eum tantillus?
- kind
- multiple_choice
- options
- tunc tametsi sed voluptas veniam rerum appositus capillus
- correctAnswer
- veniam rerum
- sortOrder
- 6
- createdAt
Overview
quiz-questions / #303
Request
curl example
curl -sS \ "https://example-data.com/api/v1/quiz-questions/303" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/quiz-questions/303" ); 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/303"
);
const quizQuestion = (await res.json()) as QuizQuestion; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/quiz-questions/303"
)
quiz_question = res.json() Response
{
"id": 303,
"quizId": 51,
"text": "Quae adeptio bene magnam eum tantillus?",
"kind": "multiple_choice",
"options": [
"tunc tametsi sed",
"voluptas",
"veniam rerum",
"appositus capillus"
],
"correctAnswer": "veniam rerum",
"sortOrder": 6,
"createdAt": "2025-06-24T14:17:47.160Z"
}