Game Loom
  1. Leaderboard
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
        GET
      • Submit score to a leaderboard
        POST
      • Get user's leaderboard participation history
        GET
      • Get leaderboard details
        GET
      • Get leaderboard ranking
        GET
      • Get user's record for a leaderboard
        GET
      • Get user's entry history for a leaderboard
        GET
    • 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)
    • 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. Leaderboard

Get user's entry history for a leaderboard

GET
api/v1/user/{userKey}/leaderboards/{leaderboardId}/my-entries
Retrieves all score submissions the user has made to a specific leaderboard.

Request

Path Params

Header Params

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'api/v1/user/{{user-key}}/leaderboards/{{leaderboard_id}}/my-entries' \
--header 'x-api-key: {{api-key}}'
Response Response Example
{
    "data": [
        {
            "id": "cc2ece8b-54d9-4717-964e-b1fb220887de",
            "score": 30,
            "metadata": null,
            "submittedAt": "2025-12-23T14:21:52.827106Z",
            "wasHighScore": false
        },
        {
            "id": "216ee25a-bc6d-42c8-8f6a-9e7e1cecd173",
            "score": 30,
            "metadata": null,
            "submittedAt": "2025-12-23T14:21:10.421671Z",
            "wasHighScore": false
        },
        {
            "id": "b06fe6c3-833f-4f20-b09e-554b59bc677b",
            "score": 44,
            "metadata": "{}",
            "submittedAt": "2025-12-19T15:35:05.376706Z",
            "wasHighScore": true
        },
        {
            "id": "974a7ae4-98f5-44f0-b3a1-0faa3dc1fa65",
            "score": 18,
            "metadata": "{}",
            "submittedAt": "2025-12-19T15:34:33.942219Z",
            "wasHighScore": false
        }
    ],
    "pageNumber": 1,
    "pageSize": 10,
    "totalCount": 4,
    "totalPages": 1,
    "hasPreviousPage": false,
    "hasNextPage": false
}
Modified at 2025-12-23 14:31:42
Previous
Get user's record for a leaderboard
Next
Overview
Built with