# Get game vendor avaliable

ดึงข้อมูลค่ายเกมส์ที่พร้อมให้บริการ

# Request

Field Value
URL {RYGAPI}/games
Method GET

# Example

https://{RYGAPI}/games

# Response

Field Value
HTTP Code 200
Body type application/json

# JSON data

Key Type Description Required Value
list array ข้อมูลค่ายเกมส์ Yes [...]
id string ไอดีค่ายเกมส์ Yes pgsoft
name string ชื่อค่ายเกมส์ Yes PGSoft
type string[] ประเภทค่ายเกมส์ Yes ["SLOT", "FISH"]
is_maintenance boolean ค่ายเกมส์กำลังปิดปรับปรุงหรือไม่ Yes false
lobby_access boolean ค่ายนี้มี Lobby หรือไม่ Yes false

# Full response

{
  "code": 0,
  "message": "success",
  "data": {
    "list": [
      {
        "id": "joker",
        "name": "Joker",
        "type": ["SLOT", "EGAME"],
        "is_maintenance": false,
        "lobby_access": false
      }
    ]
  }
}