Skip to main content
Get Current Jackpot Values
curl --request GET \
  --url https://ss.game-services.work/platform/api/jackpots/current \
  --header 'Authorization: Bearer <token>'
GET /platform/api/jackpots/current

Documentation Index

Fetch the complete documentation index at: https://docs.game-services.work/llms.txt

Use this file to discover all available pages before exploring further.

GET /platform/api/jackpots/current

Headers

NameTypeDescription
AuthorizationstringBearer token authorization header (format: Bearer your_token_here).

Response Parameters

NameTypeDescription
jackpotValuesobjectMap of jackpot groups and their corresponding jackpots with current values
Each jackpot object contains:
NameTypeDescription
outer object keystringThe Jackpot group UUID
inner object keystringThe Jackpot UUID
inner object valuearrayA list of numeric values (BigDecimal) representing the current jackpot values (a group may contain multiple jackpots)
JSON Array of objects
Example
    {
        "jackpotValues": {
            "group-uuid-1": {
                "jackpot-uuid-1": [12345.67, 89012.34],
                "jackpot-uuid-2": [4567.89]
            },
            "group-uuid-2": {
                "jackpot-uuid-3": [98765.43, 21000.00]
            }
        }
    }

GET /platform/api/jackpots/current