example-data.com
Menu
Browse docs and collections

Overview

quiz-questions / #227

Veniam adiuvo aranea damnatio contabesco odio enim at adeo degero defluo vomer nihil?

quizId
quizzes/38
text
Veniam adiuvo aranea damnatio contabesco odio enim at adeo degero defluo vomer nihil?
kind
multiple_choice
options
agnosco aranea utilis toties bibo creo censura
correctAnswer
agnosco
sortOrder
6
createdAt

Component variants

Related

References

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 227,
  "quizId": 38,
  "text": "Veniam adiuvo aranea damnatio contabesco odio enim at adeo degero defluo vomer nihil?",
  "kind": "multiple_choice",
  "options": [
    "agnosco",
    "aranea utilis",
    "toties bibo creo",
    "censura"
  ],
  "correctAnswer": "agnosco",
  "sortOrder": 6,
  "createdAt": "2026-01-27T09:04:38.253Z"
}