Get Game List

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

LoadList

This API is provided by the OMG platform and is called by the integrator.

POST {OMG_API_URL}/api/game/loadlist?trace_id=your_trace_id

{OMG_API_URL} is the OMG API domain, which can be obtained from the backend.

Headers

Name
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

Name
Type
Description

app_id

string

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

Response Data Example

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

Response Example Parameter Descriptions

Name
Required
Type
Description

code

Yes

integer

Status Code

msg

Yes

string

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

gametype

Yes

integer

Game Type

real_game_id

Yes

string

Game ID In Third Platform

status

Yes

integer

Game Status: 0 - Closed, 1 - Open

platform_sub_brand

Yes

integer

Gaming brand

Platform Field Description

Value
Description

2

PG

3

JILI

4

Pragmatic Play

5

OMG_MINI

6

MiniGame(Includes:Spribe、MiniGame、Lottery、Casino)

8

Hacksaw

23

TADA

24

CP

25

ASKME

28

JDB Game

platform_sub_brand Description

Value
Description

1

Spribe

2

PG

3

JILI

4

Pragmatic Play

5

OMG_MINI

6

MiniGame(Includes:Spribe、MiniGame、Lottery、Casino)

8

Hacksaw

23

TADA

24

CP

25

ASKME

26

Lottery

27

Casino

28

JDB Game

Gametype Parameter Description

Type
Description

1

Slots

2

Multiplayer Interactive Games

3

Fishing

4

MiniGame

Error Code

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


Last updated