> ## 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 Jackpots Info

> Retrieves a list of all the jackpots, available on the platform.

> `GET` /platform/api/jackpots

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

Each jackpot object contains:

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

JSON Array of objects

```json Example theme={null}
    {
        "jackpots": [
            {
                "name": "EGT Jackpot",
                "uuid": "eu-jp-001"
            },
            {
                "name": "NetEnt Jackpot",
                "uuid": "tr-jp-001"
            }
          ]
    }

```

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

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