/v1/operator/info

Get Operator Information

GET /v1/operator/info

Returns detailed information about the authenticated operator, including name, RTP, balance, and callback URL. This endpoint requires valid authentication.

Headers

Name
Value

Authorization

Bearer <API_TOKEN>

Content-Type

application/json

Accept

application/json

Parameters

No parameters

Response

{
  "success": true,
  "message": "OK",
  "data": {
    "id": "operator_id_1",
    "name": "scorpioplay",
    "parentId": "parent_operator_1",
    "balance": [
      {
        "currency": "USD",
        "amount": 5000
      }
    ],
    "rtp": 95,
    "callbackURL": "https://example.com/api/callback",
    "allowedIPs": [
      "1.1.1.1"
    ],
    "providers": [
      1, 2
    ],
    "ggrRate": 4,
    "level": "agent",
    "paymentMethod": "deposit"
  }
}

Root Response Object

Field
Data Type
Description

success

boolean

Indicates whether the request was successfully processed

message

string

Human-readable response message

data

object

Operator information payload


data Object – Operator Information

Field
Data Type
Description

id

string

Unique operator identifier generated by Scorpio Play

name

string

Operator's company name or individual name

parentId

string

Parent operator's identifier

balance

array<BalanceObject>

List of wallet balances grouped by currency

rtp

number

Default Return To Player (RTP) percentage applied to the operator

callbackURL

string

Callback endpoint used for wallet, transaction, or game event notifications

allowedIPs

array<string>

Whitelisted IP addresses allowed to access the API

providers

array<number>

List of enabled game provider IDs for the operator

ggrRate

number

Gross Gaming Revenue (GGR) rate percentage applied to the operator

level

string

Operator hierarchy level (e.g. operator, agent)

paymentMethod

string

Wallet settlement method (e.g. deposit, invoice)


balance Object

Field
Data Type
Description

currency

string

Currency code (ISO 4217 format, e.g. USD, EUR)

amount

number

Available balance amount for the specified currency

Last updated