example-data.com
Menu
Browse docs and collections

Overview

quiz-questions / #719

Cariosus aeternus dolor usque callide triduana adiuvo aperte collum curriculum?

quizId
quizzes/112
text
Cariosus aeternus dolor usque callide triduana adiuvo aperte collum curriculum?
kind
multiple_choice
options
vita vorax asper victus comminor tam nesciunt cubo
correctAnswer
cubo
sortOrder
4
createdAt

Component variants

Related

References

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 719,
  "quizId": 112,
  "text": "Cariosus aeternus dolor usque callide triduana adiuvo aperte collum curriculum?",
  "kind": "multiple_choice",
  "options": [
    "vita vorax asper",
    "victus comminor tam",
    "nesciunt",
    "cubo"
  ],
  "correctAnswer": "cubo",
  "sortOrder": 4,
  "createdAt": "2026-03-08T12:14:00.198Z"
}