Game List
INFO
Get game list
Request Method
| Item | Name | Sample |
|---|---|---|
| Path | Path | {Api_Address}/game/list |
| Request Method | GET |
Request Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| Sign Params | Y | View details |
Return Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| code | int | Y | |
| msg | string | Y | Message for debug |
| data | array | Y | Game Items |
Game Items
| Name | Type | Required | Description |
|---|---|---|---|
| id | int | Y | Game Id |
| name | string | Y | Game Name |
| game_code | string | Y | The index of game data |
| category | string | Y | Game Category |
| provider | string | Y | Game Provider Name |
| cover_url | string | Y | Game Cover Url |
| status | int | Y | Game status: 1=enable; 2=disable |
| updated_at | int | Y | Update Time |
Sample
Http Request
GET: Method
URL: /game/list?mid=1697028447&sign=7476c4b0e606a2903cdb31379a83671244954fbd6d9053d2db9ca222587bd9fd&ts=1713768205
Http Response(success)
{
"code": 0,
"msg": "",
"data": [
{
"id": 10000,
"name": "lucky_tanks",
"category": "mines",
"provider": "inhouse",
"cover_url": "https://static.1jogo.com/img/lucky_tanks@2x.png",
"status": 1,
"updated_at": 1690374601
"game_code":"gp_classic_4"
}
]
}