> ## Documentation Index
> Fetch the complete documentation index at: https://docs.intelliq.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Get the questions for a single player quiz

> Get the questions for a single player quiz



## OpenAPI

````yaml https://api.arcsolutionsteam.workers.dev/openapi get /api/v1/quiz-submissions/singleplayer/{quizId}/questions
openapi: 3.1.0
info:
  title: IntelliQ API
  description: API for IntelliQ
  version: 2.0.0
servers:
  - url: http://localhost:8787
    description: Local server
  - url: https://app.intelliq.dev
    description: Production server
security: []
paths:
  /api/v1/quiz-submissions/singleplayer/{quizId}/questions:
    get:
      tags:
        - Quiz Submissions Singleplayer
      summary: Get the questions for a single player quiz
      description: Get the questions for a single player quiz
      operationId: getApiV1Quiz-submissionsSingleplayerByQuizIdQuestions
      parameters:
        - in: query
          name: filter
          schema:
            type: string
            enum:
              - all
              - correct
              - incorrect
            default: all
        - schema:
            type: string
          in: path
          name: quizId
          required: true
      responses:
        '200':
          description: Questions retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  quizId:
                    type: string
                    format: uuid
                  quizTitle:
                    type: string
                  quizScore:
                    type:
                      - number
                      - 'null'
                  totalTime:
                    type:
                      - number
                      - 'null'
                  correctAnswersCount:
                    type:
                      - number
                      - 'null'
                  totalQuestions:
                    type: number
                  questions:
                    type: array
                    items:
                      type: object
                      properties:
                        text:
                          type: string
                        correctAnswer:
                          type: string
                        userAnswer:
                          type: string
                      required:
                        - text
                        - correctAnswer
                        - userAnswer
                  passingScore:
                    type:
                      - number
                      - 'null'
                  type:
                    type: string
                    enum:
                      - singleplayer
                      - multiplayer
                      - document
                      - random
                required:
                  - quizId
                  - quizTitle
                  - quizScore
                  - totalTime
                  - correctAnswersCount
                  - totalQuestions
                  - questions
                  - passingScore
                  - type

````