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

# Get Quiz Configuration API

> Retrieve the configuration settings for a specific quiz



## OpenAPI

````yaml GET /quiz/{quizId}/settings
openapi: 3.0.1
info:
  license:
    name: MIT
  title: QuizRise API
  version: 1.0.0
  description: API for managing quizzes, questions, and related operations
servers:
  - url: https://app.quizrise.com/api/v1
security:
  - bearerAuth: []
paths:
  /quiz/{quizId}/settings:
    get:
      summary: Get quiz settings
      description: >-
        Retrieves the settings for a specific quiz. Requires authentication and
        classroom ownership.
      parameters:
        - name: quizId
          in: path
          required: true
          schema:
            type: string
          description: The ID of the quiz
      responses:
        '200':
          description: Quiz settings retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - success
                  data:
                    type: object
                    properties:
                      emailRequired:
                        type: boolean
                      nameRequired:
                        type: boolean
                      showCorrectAnswer:
                        type: boolean
                      showFinalReport:
                        type: boolean
                      shuffleQuestions:
                        type: boolean
                      shuffleChoices:
                        type: boolean
                      showFlashcards:
                        type: boolean
                      showSummary:
                        type: boolean
                      bgImageId:
                        type: integer
                      logoUrl:
                        type: string
                        nullable: true
                      showBranding:
                        type: boolean
        '400':
          description: Bad request - Quiz ID is missing
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - error
                  message:
                    type: string
                    example: Quiz ID is required.
        '401':
          description: Unauthorized - Invalid or missing API token
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - error
                  message:
                    type: string
        '403':
          description: Forbidden - No access to view settings
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - error
                  message:
                    type: string
                    example: Access Denied. You do not have permission to view settings
        '404':
          description: Settings not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - error
                  message:
                    type: string
                    example: Settings not found.
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - error
                  message:
                    type: string
                    example: Failed to get questions.
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````