Get Game List

The integrator can retrieve the list of games currently available for integration with MINI.GAMEby calling this API.

LoadList

This API is provided by the MINI.GAME platform and is called by the integrator.

POST {MINIGAME_APIURL}/api/game/loadlist

{MINIGAME_APIURL}s the MINI.GAME API domain, which can be obtained from the backend.

Headers

Parameter
Value

Content-Type

"application/json; charset=utf-8"

sign

"your_sign_string"

Please refer to the Signature Algorithm and Example page for details on the signature algorithm.

Body

Parameter
Required
Type
Description

appid

Yes

string

The unique identifier for the merchant, available in the merchant backend.

Response Data Example

{
    "code": 0,
    "msg": "success",
    "data": {
        "glist": [
            {
                "gameid": "2000002",
                "name": "Mines",
                "platform": "1",
                "gametype": 5,
                "status":1
            }
        ]
    }
}

Response Example Parameter Descriptions

Parameter
Required
Type
Description

code

Yes

integer

Status Code

msg

Yes

string

Prompt message

data

Yes

object

Response Data

glist

Yes

array

Game List

gameid

Yes

string

Game ID

name

Yes

string

Game Name

platform

Yes

string

Platform where the game belongs

gametype

Yes

integer

Game Type

status

Yes

integer

Game status; 0: closed, 1: open

Platform Field Description

Value
Description
Screen mode support

1

Mini_A

Full screen vertically, full screen horizontally

2

Mini_B

Full screen vertically, full screen horizontally

3

Mini_C

Vertical full screen

4

Mini_D

Full screen vertically, full screen horizontally

100

Mini

Full screen vertically, full screen horizontally

200

Lottery

Vertical full screen, vertical half screen, horizontal full screen

300

Casino

Vertical full screen, vertical half screen, horizontal full screen

Gametype Parameter Description

Type
Description

1

slots

2

Multiplayer

5

Mini

6

Scratch Lottery

7

Multiplayer Lottery

8

Single Player Lottery

Error Code

For more error codes, please refer to the General Error Codes page description.

Last updated