Obter perguntas do quiz

GET /quiz/questions

Retorna uma lista de perguntas para o quiz com suas opções.

Responses

  • 200 application/json

    Perguntas do quiz retornadas com sucesso

    Hide response attributes Show response attributes object
  • Erro ao obter as perguntas

GET /quiz/questions
curl \
 --request GET 'http://localhost:8000/quiz/questions'
Response examples (200)
[
  {
    "key": "string",
    "label": "string",
    "options": [
      "string"
    ]
  }
]