Cariosus tot culpa suadeo solum utrum tres?
- quizId
- quizzes/18
- text
- Cariosus tot culpa suadeo solum utrum tres?
- kind
- multiple_choice
- options
- aspicio dolor vulticulus decet supplanto speculum
- correctAnswer
- speculum
- sortOrder
- 1
- createdAt
Overview
quiz-questions / #116
Request
curl example
curl -sS \ "https://example-data.com/api/v1/quiz-questions/116" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/quiz-questions/116" ); 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/116"
);
const quizQuestion = (await res.json()) as QuizQuestion; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/quiz-questions/116"
)
quiz_question = res.json() Response
{
"id": 116,
"quizId": 18,
"text": "Cariosus tot culpa suadeo solum utrum tres?",
"kind": "multiple_choice",
"options": [
"aspicio",
"dolor",
"vulticulus decet supplanto",
"speculum"
],
"correctAnswer": "speculum",
"sortOrder": 1,
"createdAt": "2024-12-26T20:38:25.991Z"
}