Delego uter aequus vinitor suggero surculus?
- quizId
- quizzes/105
- text
- Delego uter aequus vinitor suggero surculus?
- kind
- short_answer
- options
-
- correctAnswer
- the key principle
- sortOrder
- 2
- createdAt
Overview
quiz-questions / #665
Request
curl example
curl -sS \ "https://example-data.com/api/v1/quiz-questions/665" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/quiz-questions/665" ); 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/665"
);
const quizQuestion = (await res.json()) as QuizQuestion; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/quiz-questions/665"
)
quiz_question = res.json() Response
{
"id": 665,
"quizId": 105,
"text": "Delego uter aequus vinitor suggero surculus?",
"kind": "short_answer",
"options": [],
"correctAnswer": "the key principle",
"sortOrder": 2,
"createdAt": "2025-08-06T13:53:05.336Z"
}