Shop games
List Available Games
Get a paginated list of available games with filtering options
GET
/{locale}/shop/gamesGet a paginated list of available games with filtering options
Authorization
bearerAuth AuthorizationBearer <token>
Enter JWT token in the format: Bearer {token}
In: header
Path Parameters
locale*string
Locale code
Query Parameters
type?string
Filter by game type
Value in
- "slot_machine"
- "wheel_of_fortune"
- "scratch_card"
- "memory"
- "quiz"
- "puzzle"
category?string
Filter by game category
Length
length <= 50is_active?boolean
Filter by active status
is_featured?boolean
Filter by featured status
playable_only?boolean
Show only games user can currently play
search?string
Search by game name or description
Length
length <= 100page?integer
Page number
Range
1 <= valueper_page?integer
Items per page
Range
1 <= value <= 100Response Body
application/json
curl -X GET "https://example.com/en/shop/games"{ "success": true, "data": { "data": [ { "id": 1, "name": "Wheel of Fortune", "type": "wheel_of_fortune", "description": "Spin the wheel to win prizes", "is_active": true, "is_featured": false, "points_cost": 100, "daily_limit": 5, "can_play": true, "play_restriction": null } ], "meta": {} }}