Ratione antepono cubo arto callide conculco anser spargo arcesso?
- quizId
- quizzes/43
- text
- Ratione antepono cubo arto callide conculco anser spargo arcesso?
- kind
- short_answer
- options
-
- correctAnswer
- the main concept
- sortOrder
- 0
- createdAt
Overview
quiz-questions / #248
Request
curl example
curl -sS \ "https://example-data.com/api/v1/quiz-questions/248" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/quiz-questions/248" ); 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/248"
);
const quizQuestion = (await res.json()) as QuizQuestion; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/quiz-questions/248"
)
quiz_question = res.json() Response
{
"id": 248,
"quizId": 43,
"text": "Ratione antepono cubo arto callide conculco anser spargo arcesso?",
"kind": "short_answer",
"options": [],
"correctAnswer": "the main concept",
"sortOrder": 0,
"createdAt": "2025-01-08T13:54:00.874Z"
}