Get Game List

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

Request Ex:

{
        "agent_code": "meiyun",
        "agent_token": "d65f52d9deb0f69ea6d3cd8a4c3ac72f",
        "provider_code": "PRAGMATIC",
        "lang": "en"
}



    "PRAGMATIC", "REELKINGDOM", "HABANERO", "BOOONGO", "PLAYSON", 
    "CQ9", "DREAMTECH", "EVOPLAY", "TOPTREND", "PGSOFT", "GENESIS"

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