Game Loom
  1. Quiz
Game Loom
  • Game Loom
    • 👋 Welcome to Game Loom
  • Getting started
    • Introduction
    • 👤 Authentication
  • User Registration
    • Introduction
    • Single user registration
      POST
    • Bulk Register Users
      POST
  • Notifications
    • Overview
    • Receiving Event Notifications via Webhooks
    • Get All notifications for specific user
      GET
  • Rewards
    • Overview
    • Points
      • Record user point event
      • Get user points
      • Get Specific user point
    • Levels
      • Record user level event
      • Get user levels
      • Get Specific user level
    • Badges
      • Award badge to user
      • Get user badges
      • Get Specific user badge
  • Challenges (Gamification elements)
    • Introduction
    • Leaderboard
      • Get available leaderboards for user
      • Submit score to a leaderboard
      • Get user's leaderboard participation history
      • Get leaderboard details
      • Get leaderboard ranking
      • Get user's record for a leaderboard
      • Get user's entry history for a leaderboard
    • Survey
      • Overview
      • Get available surveys for user
      • Start a new survey participation
      • Get detailed user participation
      • Get user's survey participation history
      • Abandon survey participation
      • Save individual answer to survey question
      • Submit completed survey
      • Submit Survey with answers (One-Step Submission)
    • Quiz
      • Get available quizzes for user
        GET
      • Submit complete quiz answers
        POST
      • Get comprehensive user quiz history
        GET
      • Get comprehensive quiz attempt details
        GET
    • Open Challenge
      • Overview
      • Get available open challenges for user
      • Complete an open challenge
      • Get user's open challenge participation history
      • Get user open challenge by ID
    • Schemas
      • Survey Schame
  1. Quiz

Get comprehensive quiz attempt details

GET
api/v1/user/{userKey}/quizzes/results/{userQuizId}

Quiz Attempt Results#

Retrieves complete and detailed results for a specific quiz attempt, including question-by-question analysis, performance metrics, and learning insights.

Usage Examples#

Review performance:
/quizzes/results/{userQuizId}
Detailed feedback:
See which questions were answered correctly or incorrectly
Learning analysis:
Identify knowledge gaps and strengths based on answers
Progress verification:
Confirm quiz completion status and score details

Path Parameters#

userQuizId
REQUIRED | UUID of the specific quiz attempt or completion record

Request

Path Params

Header Params

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://api-stg.98s.studio/api/v1/user/{{user-key}}/quizzes/results/' \
--header 'x-api-key: {{api-key}}'
Response Response Example
{
    "id": "fe4d8c91-97f2-48cc-9158-a27673331048",
    "quizId": "877aae38-1c65-4da4-bcc1-3e015ee7aaa4",
    "quizName": "MATH 254",
    "userKey": "1765132434113",
    "status": 2,
    "score": 100,
    "correctAnswers": 2,
    "totalQuestions": 2,
    "scorePercentage": 100,
    "completedAt": "2026-01-03T19:52:21.987144Z",
    "answers": [
        {
            "id": "5491834c-0d92-44f6-9caa-b0bf31f69d9f",
            "questionId": "dc02947b-7d85-4d55-92d4-0482d6564a34",
            "question": "1 + 1",
            "userAnswer": "0",
            "isCorrect": true
        },
        {
            "id": "3a2f834e-cb1a-4fe4-befb-49f1b61aef49",
            "questionId": "c6cc7ba6-1022-4d18-aa2c-a320e9b29b36",
            "question": "2 x 2",
            "userAnswer": "1",
            "isCorrect": true
        }
    ],
    "hasReward": true,
    "rewardType": "Point",
    "rewardAmount": 20
}
Modified at 2026-01-03 20:07:09
Previous
Get comprehensive user quiz history
Next
Overview
Built with