Get Jackpot Groups
GET
/jackpot-service/v1/jackpots/groups
Headers
Name
Value
Content-Type
application/json
Authorization
Bearer <token>
Body
Name
Type
Description
Optional
page
number
Page number for pagination
Yes
per_page
number
Number of jackpot groups per page
Yes
Response
{
"data": [
{
"id": 14,
"name": "test_group",
"status": true,
"description": "test_discription",
"terms_and_conditions": "test_condition",
"start_date": "2025-02-24 12:33:03",
"end_date": "2031-06-25 12:33:08",
"order": 2,
"jackpots": [
{
"id": 11,
"name": "test_jack",
"type": "medium",
"jackpot_group_id": 14,
"current_winning_amount": "17874",
"reset_jackpot_time": null,
"min_stake": 100,
"max_stake": 10000,
"start_jackpot_amount": 10000,
"min_jackpot_limit": 15000,
"max_jackpot_limit": 150000,
"currency": {
"id": 13,
"enabled": 1,
"name": "US Dollar",
"image": "01JJVF462CQ2T4W93RX30A826G.png",
"code": "USD",
"sign": "$",
"subunits": 2,
"type": "fiat",
"available_for_wallet": 1,
"fallback": 1
},
"created_at": "2025-02-25T06:23:04.000000Z",
"updated_at": "2025-02-25T09:35:27.000000Z",
"media": [
{
"id": 43,
"size": 26856,
"name": "desktop_banner",
"image_name": "desktop_banner.webp",
"original_url": "https://cdn.sprutgaming.com/dev/43/desktop_banner.webp",
"mime_type": "image/webp",
"custom_properties": {
"description": "test_description"
}
}
]
}
],
"all_time_prize_pool": null,
"group_winner": null
}
],
"links": {
"first": "http://localhost:8001/api/jackpot/groups?page=1",
"last": "http://localhost:8001/api/jackpot/groups?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"per_page": 25,
"to": 2,
"total": 2
}
}
{
"error": "Invalid request"
}
Last updated