> ## 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 Questions List API

> Get all questions belonging to a specific quiz



## OpenAPI

````yaml GET /quiz/{quizId}/questions
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}/questions:
    get:
      summary: Get quiz questions
      description: Retrieves a paginated list of questions for a specific quiz
      parameters:
        - name: quizId
          description: The ID of the quiz to retrieve questions for
          in: path
          required: true
          schema:
            type: string
        - name: page
          description: The page number to retrieve
          in: query
          schema:
            type: integer
            default: 1
      responses:
        '200':
          description: Questions retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - success
                  questions:
                    type: array
                    items:
                      $ref: '#/components/schemas/Question'
                  pagination:
                    type: object
                    properties:
                      currentPage:
                        type: integer
                      totalPages:
                        type: integer
                      totalItems:
                        type: integer
                      itemsPerPage:
                        type: integer
                      hasNextPage:
                        type: boolean
                      hasPreviousPage:
                        type: boolean
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Questions not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Question:
      type: object
      properties:
        id:
          type: string
        text:
          type: string
        type:
          type: string
        difficulty:
          type: string
        explanation:
          type: string
        language:
          type: string
        choices:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              text:
                type: string
              isCorrect:
                type: boolean
    Error:
      type: object
      properties:
        status:
          type: string
          enum:
            - error
        message:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````