Ver ipsa animus dolorum omnis damnatio speciosus demo bos?
- quizId
- quizzes/2
- text
- Ver ipsa animus dolorum omnis damnatio speciosus demo bos?
- kind
- short_answer
- options
-
- correctAnswer
- define the term
- sortOrder
- 2
- createdAt
Overview
quiz-questions / #10
Request
curl example
curl -sS \ "https://example-data.com/api/v1/quiz-questions/10" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/quiz-questions/10" ); 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/10"
);
const quizQuestion = (await res.json()) as QuizQuestion; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/quiz-questions/10"
)
quiz_question = res.json() Response
{
"id": 10,
"quizId": 2,
"text": "Ver ipsa animus dolorum omnis damnatio speciosus demo bos?",
"kind": "short_answer",
"options": [],
"correctAnswer": "define the term",
"sortOrder": 2,
"createdAt": "2025-01-12T09:22:21.772Z"
}