报表及功能接口

报表及功能接口在线调试

Test it!在线调试中需要手动填入sign,sign的值可以在Header Parameters中找到

Pull game history

post
Query parameters
trace_idstringRequired

randomly generated serial number

Example: e3pc06yk2qrk
Header parameters
app_idstringRequired

app id

Example: 1025
signstringRequired

digital signature

Example: a68faee4410bd47067aaa098c409ff12
Body
gameidstringOptional

select a game from the game list

Example: 2000001
pagenumberRequired

page number

Example: 1
sizenumberRequired

size number

Example: 20
start_timenumberRequired

start time

Example: 0
end_timenumberRequired

end time

Example: 0
Responses
200

Successful operation

application/json
post
POST /special/outer/record/GetGameLogList HTTP/1.1
Host: backend_server.sprintsguys.comapi
app_id: 1025
sign: a68faee4410bd47067aaa098c409ff12
Content-Type: application/json
Accept: */*
Content-Length: 67

{
  "gameid": "2000001",
  "page": 1,
  "size": 20,
  "start_time": 0,
  "end_time": 0
}
200

Successful operation

{
  "code": 1,
  "msg": "success",
  "data": [
    {
      "uuid": "75571305-413c-0b3f-e4ba-64bb05e8b2c2",
      "agent_sub": 0,
      "create_time": 1729760264,
      "round_id": 1729760264462809,
      "account": "[email protected]",
      "account_id": "[email protected]",
      "game_id": 2000001,
      "currency": "usdt",
      "win": 0.5,
      "enter_money": 9998.6,
      "after_settlement_money": 9999.1,
      "bet": 1,
      "usdt_exchange_rate": "1.00",
      "valid_bet": 1,
      "fee": 0,
      "platform": "1",
      "uid": "10012",
      "ip": "127.0.0.1",
      "game_step": 0,
      "game_log": ""
    }
  ]
}

Pull the game currency change history

post
Query parameters
trace_idstringRequired

randomly generated serial number

Example: e3pc06yk2qrk
Header parameters
app_idstringRequired

app id

Example: 1025
signstringRequired

digital signature

Example: a68faee4410bd47067aaa098c409ff12
Body
unamestringRequired

user account or null

gameidstringOptional

select a game from the game list

Example: 2000001
pagenumberRequired

page number

Example: 1
sizenumberRequired

size number

Example: 20
start_timenumberRequired

start time

Example: 0
end_timenumberRequired

end time

Example: 0
Responses
200

Successful operation

application/json
post
POST /api/special/outer/record/GetGameRecordList HTTP/1.1
Host: backend_server.sprintsguys.com
app_id: 1025
sign: a68faee4410bd47067aaa098c409ff12
Content-Type: application/json
Accept: */*
Content-Length: 67

{
  "gameid": "2000001",
  "page": 1,
  "size": 20,
  "start_time": 0,
  "end_time": 0
}
200

Successful operation

{
  "code": 1,
  "msg": "success",
  "data": [
    {
      "uuid": "75571305-413c-0b3f-e4ba-64bb05e8b2c2",
      "agent_sub": 0,
      "create_time": 1729760264,
      "round_id": 1729760264462809,
      "account": "[email protected]",
      "account_id": "[email protected]",
      "game_id": 2000001,
      "currency": "usdt",
      "win": 0.5,
      "enter_money": 9998.6,
      "after_settlement_money": 9999.1,
      "bet": 1
    }
  ]
}

Last updated