example-data.com
Menu
Browse docs and collections

Overview

quiz-questions / #803

Virgo apto attollo sequi creptio thorax pecto provident vespillo modi?

quizId
quizzes/126
text
Virgo apto attollo sequi creptio thorax pecto provident vespillo modi?
kind
multiple_choice
options
suppellex auditor vesper cernuus terror vesica abduco cui vestigium
correctAnswer
suppellex auditor vesper
sortOrder
0
createdAt

Component variants

Related

References

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/quiz-questions/803" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/quiz-questions/803"
);
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/803"
);
const quizQuestion = (await res.json()) as QuizQuestion;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/quiz-questions/803"
)
quiz_question = res.json()

Response

{
  "id": 803,
  "quizId": 126,
  "text": "Virgo apto attollo sequi creptio thorax pecto provident vespillo modi?",
  "kind": "multiple_choice",
  "options": [
    "suppellex auditor vesper",
    "cernuus",
    "terror vesica abduco",
    "cui vestigium"
  ],
  "correctAnswer": "suppellex auditor vesper",
  "sortOrder": 0,
  "createdAt": "2025-07-24T11:56:39.989Z"
}