Get Games
get
Returns a paginated list of games.
⚠️ API RATE LIMIT WARNING:
This API enforces rate limits. Exceeding the allowed number of requests may result in temporary blocking or throttling.
Authorizations
Query parameters
per_pageintegerOptionalDefault:
Number of games per page.
30
Responses
200
Successful response with list of games.
application/json
401
Unauthorized - Missing or invalid token
application/json
get
GET /api/casino/games HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"data": [
{
"game_id": 1,
"name": "Juicy Fruits",
"reference": "JuicyFruits",
"rtp": "95.00",
"is_desktop": true,
"is_mobile": true,
"is_branded": true,
"has_demo": false,
"free_games_support": true,
"provider_id": 1,
"provider_name": "Game Studio"
},
{
"game_id": 2,
"name": "Monkey",
"reference": "Monkey",
"rtp": "95.00",
"is_desktop": true,
"is_mobile": true,
"is_branded": false,
"has_demo": true,
"free_games_support": false,
"provider_id": 1,
"provider_name": "Game Studio"
}
],
"links": {
"first": "/api/casino/games?page=1",
"next": "/api/casino/games?page=2",
"prev": null,
"last": null
},
"meta": {
"current_page": 1,
"from": 1,
"path": "/api/casino/games",
"per_page": 2,
"to": 2
}
}
Last updated