> ## 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 user's quiz history

> Get user's quiz history with optional filtering



## OpenAPI

````yaml https://api.arcsolutionsteam.workers.dev/openapi get /api/v1/history
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/history:
    get:
      tags:
        - History
      summary: Get user's quiz history
      description: Get user's quiz history with optional filtering
      operationId: getApiV1History
      parameters:
        - in: query
          name: type
          schema:
            type: string
            enum:
              - singleplayer
              - multiplayer
              - document
              - random
        - in: query
          name: status
          schema:
            anyOf:
              - type: string
              - type: boolean
        - in: query
          name: tags
          schema:
            anyOf:
              - type: string
              - type: array
                items:
                  type: string
        - in: query
          name: page
          schema:
            type: number
            minimum: 1
            default: 1
        - in: query
          name: limit
          schema:
            type: number
            minimum: 1
            maximum: 100
            default: 10
      responses:
        '200':
          description: Quiz history retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      oneOf:
                        - type: object
                          properties:
                            id:
                              type: string
                            title:
                              type: string
                            date:
                              type: string
                            score:
                              type:
                                - number
                                - 'null'
                            correct:
                              type:
                                - number
                                - 'null'
                            incorrect:
                              type:
                                - number
                                - 'null'
                            type:
                              type: string
                              const: singleplayer
                            isBookmarked:
                              type: boolean
                            totalTime:
                              type: string
                            passed:
                              type: boolean
                            multiplayerScore:
                              type:
                                - number
                                - 'null'
                            multiplayerCorrect:
                              type:
                                - number
                                - 'null'
                          required:
                            - id
                            - title
                            - date
                            - score
                            - correct
                            - incorrect
                            - type
                            - isBookmarked
                            - totalTime
                            - multiplayerScore
                            - multiplayerCorrect
                        - type: object
                          properties:
                            id:
                              type: string
                            title:
                              type: string
                            date:
                              type: string
                            score:
                              type:
                                - number
                                - 'null'
                            correct:
                              type:
                                - number
                                - 'null'
                            incorrect:
                              type:
                                - number
                                - 'null'
                            type:
                              type: string
                              const: document
                            isBookmarked:
                              type: boolean
                            totalTime:
                              type: string
                            passed:
                              type: boolean
                          required:
                            - id
                            - title
                            - date
                            - score
                            - correct
                            - incorrect
                            - type
                            - isBookmarked
                            - totalTime
                        - type: object
                          properties:
                            id:
                              type: string
                            title:
                              type: string
                            date:
                              type: string
                            score:
                              type:
                                - number
                                - 'null'
                            correct:
                              type:
                                - number
                                - 'null'
                            incorrect:
                              type:
                                - number
                                - 'null'
                            type:
                              type: string
                              const: multiplayer
                            isBookmarked:
                              type: boolean
                            roomId:
                              type:
                                - string
                                - 'null'
                          required:
                            - id
                            - title
                            - date
                            - score
                            - correct
                            - incorrect
                            - type
                            - isBookmarked
                            - roomId
                  pagination:
                    type: object
                    properties:
                      page:
                        type: number
                      limit:
                        type: number
                      totalItems:
                        type: number
                      totalPages:
                        type: number
                      hasNextPage:
                        type: boolean
                      hasPreviousPage:
                        type: boolean
                    required:
                      - page
                      - limit
                      - totalItems
                      - totalPages
                      - hasNextPage
                      - hasPreviousPage
                required:
                  - data
                  - pagination

````