Skip to main content
GET
https://s-apis.oppigames.com/
/
game
/
jackpot-list
Jackpot List
curl --request GET \
  --url https://s-apis.oppigames.com/game/jackpot-list \
  --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": [
            {
                "jackpotId": "200b4487-3e2d-4c83-a85d-3f6d7245ba10",
                "gameId": "G1720761376617",
                "betPortion": 50,
                "jackpotPool": 150000000,
                "status": 0,
                "createdAt": "2025-07-15T09:14:18.339Z",
                "updatedAt": "2025-07-15T09:14:18.339Z"
            }
        ]
    }
}


status
  • 0 = Inactive
  • 1 = Active
  • 2 = Awarded (Jackpot completed)

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
Specifies the current page number for pagination purposes ( default is 1).
limit
number
Specifies how many records to display on each page, controlling the size of each data segment (default is 10).
gameId
string
Optional filter to fetch jackpots for a specific game. Pass the game’s unique ID.

Response

status
string
required
Status of the request.
data
Data Object
{
    "status": "RS_OK",
    "data": {
        "totalPages": 1,
        "currentPage": 1,
        "totalCount": 2,
        "result": [
            {
                "jackpotId": "200b4487-3e2d-4c83-a85d-3f6d7245ba10",
                "gameId": "G1720761376617",
                "betPortion": 50,
                "jackpotPool": 150000000,
                "status": 0,
                "createdAt": "2025-07-15T09:14:18.339Z",
                "updatedAt": "2025-07-15T09:14:18.339Z"
            }
        ]
    }
}