Skip to content
v1.0.0 (2026-08-15 18:56)

Recent Games

Overview

  • Description: Fetch the history of recently played games for the current user.
  • Authentication: No Member Login Required, but a Base Token must be provided to identify the Agent. If not logged in (only Base Token provided), it will return an empty list or default recommendations.

1. GET - Get Recent Games

  • Path: /api/games/recent

Request Header

ParameterTypeRequiredDescription
AuthorizationStringYesBearer Token (or Bearer BaseToken)

Request Parameters

ParameterTypeRequiredDescription
limitIntegerNoNumber of records to return, default 20

Response Example

json
{
  "code": 0,
  "msg": "Success",
  "data": [
    {
      "game_code": "vs20olympgate",
      "game_name": "Gates of Olympus",
      "game_icon": "https://cdn.domain.com/icons/vs20olympgate.webp",
      "provider_code": "pragmatic",
      "last_played_at": "2023-12-01T12:00:00Z"
    }
  ]
}