> ## 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 Jackpot Groups

> Retrieves a list of all the jackpot groups, must be used in brand creation.

> `GET` /platform/api/jackpot-groups

### 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)"}}>jackpotGroups</span>** | `array` | List of available jackpot groups |

Each jackpot group object contains:

| Name                                                            | Type     | Description                            |
| --------------------------------------------------------------- | -------- | -------------------------------------- |
| **<span style={{color: "rgb(var(--primary)"}}>name</span>**     | `string` | Name of the jackpot group              |
| **<span style={{color: "rgb(var(--primary)"}}>uuid</span>**     | `string` | Unique identifier of the jackpot group |
| **<span style={{color: "rgb(var(--primary)"}}>currency</span>** | `string` | Base currency for the jackpot group    |

JSON Array of objects

```json Example theme={null}
    {
        "jackpotGroups": [
            {
                "name": "Europe Jackpot",
                "uuid": "eu-jp-001",
                "currency": "EUR"
            },
            {
                "name": "Turkey Jackpot",
                "uuid": "tr-jp-001",
                "currency": "TRY"
            }
          ]
    }

```

<ResponseExample>
  ```http Request theme={null}
  GET /platform/api/jackpot-groups
  ```

  ```json Response 200 theme={null}
  {
      "jackpotGroups": [
          {
              "name": "name",
              "uuid": "uuid",
              "currency": "USD"
          },
          {
              "name": "name1",
              "uuid": "uuid1",
              "currency": "TRY"
          }
      ]
  }
  ```
</ResponseExample>
