> ## 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 Current Jackpot Values

> Retrieves current jackpot values for all jackpot groups available to the operator calling this endpoint.

> `GET` /platform/api/jackpots/current

### Headers

| Name                                                                 | Type     | Description                                                           |
| -------------------------------------------------------------------- | -------- | --------------------------------------------------------------------- |
| **<span style={{color: "rgb(var(--primary)"}}>Authorization</span>** | `string` | Bearer token authorization header (format: `Bearer your_token_here`). |

### Response Parameters

| Name                                                                 | Type     | Description                                                                |
| -------------------------------------------------------------------- | -------- | -------------------------------------------------------------------------- |
| **<span style={{color: "rgb(var(--primary)"}}>jackpotValues</span>** | `object` | Map of jackpot groups and their corresponding jackpots with current values |

Each jackpot object contains:

| Name                                                                      | Type     | Description                                                                                                           |
| ------------------------------------------------------------------------- | -------- | --------------------------------------------------------------------------------------------------------------------- |
| **<span style={{color: "rgb(var(--primary)"}}>outer object key</span>**   | `string` | The Jackpot group UUID                                                                                                |
| **<span style={{color: "rgb(var(--primary)"}}>inner object key</span>**   | `string` | The Jackpot UUID                                                                                                      |
| **<span style={{color: "rgb(var(--primary)"}}>inner object value</span>** | `array`  | A list of numeric values (BigDecimal) representing the current jackpot values (a group may contain multiple jackpots) |

JSON Array of objects

```json Example theme={null}
    {
        "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]
            }
        }
    }

```

<ResponseExample>
  ```http Request theme={null}
  GET /platform/api/jackpots/current
  ```

  ```json Response 200 theme={null}
  {
      "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]
      }
      }
  }
  ```
</ResponseExample>
