Get Game List

POST https://meiyunyunapi.com/gambling_api/game_list

Request Ex:

{
        "agent_code": "YOUR_AGENT_CODE",
        "agent_token": "YOUR_AGENT_TOKEN",
        "provider_code": "PRAGMATIC",
        "lang": "en"
}

Response Ex:

// Success:
{
        "status": 1,
        "msg": "SUCCESS",
        "games": [
            {
                "id": 1,
                "sort": 0,
                "lang": "en",
                "game_code": "vs243mwarrior",
                "game_name": "Monkey Warrior",
                "banner": "https://.../vs20doghouse.png",
                "status": 1 // Available
            },
            {
                "id": 2,
                "sort": 0,
                "lang": "en",
                "game_code": "vs20doghouse",
                "game_name": "The Dog House",
                "banner": "https://.../vs243mwarrior.png",
                "status": 0 // Not available
            }
        ]
}

// Failure:
{
        "status": 0,
        "msg": "INTERNAL_ERROR"
}

Last updated