Skip to main content
GET
https://s-apis.oppigames.com/
/
game
/
jackpot-rewards
Jackpot Reward List
curl --request GET \
  --url https://s-apis.oppigames.com/game/jackpot-rewards \
  --header 'Content-Type: <content-type>' \
  --header 'x-api-key: <x-api-key>' \
  --header 'x-signature: <x-signature>' \
  --header 'x-timestamp: <x-timestamp>'
{
    "status": "RS_OK",
    "data": {
        "totalPages": 1,
        "currentPage": 1,
        "totalCount": 2,
        "result": [
            {
                "amount": 50,
                "gameId": "G1720761376617",
                "playerId": "PAWAN_PAREEK1",
                "createdAt": "2025-07-15T09:14:18.339Z"
            }
        ]
    }
}

Headers

x-api-key
string
required
A unique identifier associated with operator calling API.
x-signature
string
required
A SHA256 HMAC signature generated using the request body and timestamp. Format: HMAC_SHA256(JSON.stringify(data) + ’|’ + timestamp), signed using the provided secret key.
x-timestamp
string
required
An Unix timestamp (milliseconds) Used to verify the request’s freshness. Ensure the same value is used in signature generation.
The signature will remain valid for only 5 minutes from the provided timestamp.
Content-Type
string
required
Must be set to application/json.

Query Parameters

page
number
default:1
Specifies the current page number for pagination purposes.
limit
number
default:10
Specifies how many records to display on each page, controlling the size of each data segment.
gameId
string
Retrieve jackpot rewards for a specific game.
playerId
string
Retrieve jackpot rewards received by a specific player.

Response

status
string
required
Code indicates status of the request weather it is succeed or failed. We have listed error codes here
data
Data Object
{
    "status": "RS_OK",
    "data": {
        "totalPages": 1,
        "currentPage": 1,
        "totalCount": 2,
        "result": [
            {
                "amount": 50,
                "gameId": "G1720761376617",
                "playerId": "PAWAN_PAREEK1",
                "createdAt": "2025-07-15T09:14:18.339Z"
            }
        ]
    }
}