/v1/player/info

Retrieve player account information

GET /v1/player/list

Fetches detailed information about a player based on a unique identifier such as userId in operator side. Typically used to validate session ownership or display player details before launching a game.

Headers

Name
Value

Authorization

Bearer <API_TOKEN>

Content-Type

application/json

Accept

application/json

Parameters

{
  "playerExternalId": "playerId_onOperatorSide"
}
Key
Data Type
Description
Mandatory

playerExternalId

string

Unique player identifier from the operator’s system used to link or identify the player in the API

Required

Response

{
  "success": true,
  "message": "OK",
  "data": {
    "playerCode": 100000121,
    "balance": [
      {
        "currency": "USD",
        "amount": 5000
      }
    ]
  }
}
Key
Data Type
Description

success

boolean

Indicates whether the request was processed successfully

message

string

Human-readable status message

data

object

Container for the response payload

data.playerCode

number

Unique internal player identifier assigned by the system

data.balance

array

List of player wallet balances by currency

data.balance[].currency

string

Currency code (e.g., USD, EUR)

data.balance[].amount

number

Available balance amount for the specified currency

Last updated