Shop games
Get Single Game Details
Get detailed information for a specific game
GET
/{locale}/shop/games/{id}Get detailed information for a specific game
Authorization
bearerAuth AuthorizationBearer <token>
Enter JWT token in the format: Bearer {token}
In: header
Path Parameters
locale*string
Locale code
id*integer
Game ID
Response Body
application/json
curl -X GET "https://example.com/en/shop/games/1"{ "success": true, "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, "user_history": [ { "id": 1, "status": "completed", "score": 1000, "reward_claimed": false, "created_at": "2023-10-27T10:00:00Z" } ], "today_play_count": 3 }}