Get Game List

Public API Online Debugging

Test it! In the online debugging, you need to manually enter the sign. The value of sign can be found in the Header Parameters.

Get game list

post
Query parameters
trace_idstringRequired

randomly generated serial number

Example: e3pc06yk2qrk
Header parameters
signstringRequired

digital signature

Example: e6187fe961219eafd4544ec619bae55a
Body
appidstringOptional

get the list of games with appid 1025

Example: 1025
Responses
200

Successful operation

application/json
post
POST /api/game/loadlist HTTP/1.1
Host: login.sprintsguys.com
sign: e6187fe961219eafd4544ec619bae55a
Content-Type: application/json
Accept: */*
Content-Length: 16

{
  "appid": "1025"
}
200

Successful operation

{
  "code": 1,
  "msg": "success",
  "data": {
    "glist": [
      {
        "gameid": "1025",
        "name": "Plinko",
        "platform": "1",
        "gametype": 2000001,
        "status": 1
      }
    ]
  }
}

Last updated