Skip to main content
GET
/
players
/
{playerId}
Get complete player profile information
curl --request GET \
  --url https://mock-api.cevro.ai/v1/players/{playerId} \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Session-ID: <x-session-id>'
{
  "id": "5832",
  "name": "Michael Rodriguez",
  "email": "[email protected]",
  "phone": "+49 174 1234567",
  "currency": "EUR",
  "language": "German",
  "registration_date": "2023-11-07T05:31:56Z",
  "ftd_date": "2023-11-07T05:31:56Z",
  "last_login": "2023-11-07T05:31:56Z",
  "kyc_status": "not_started",
  "withdrawal_status": "Active",
  "affiliate_name": "AffCo Direct",
  "affiliate_source": "Google",
  "vip_manager": "Sarah Johnson",
  "blocked": false,
  "balances": {
    "total_balance": 150,
    "cash_balance": 100,
    "bonus_balance": 50,
    "withdrawable_balance": 100,
    "pending_withdrawal": 0
  },
  "kpi": {
    "active_bonus": true,
    "wr": 123,
    "last_withdrawal": {
      "amount": 123,
      "status": "<string>"
    },
    "last_deposit": {
      "amount": 123,
      "date": "2023-11-07T05:31:56Z"
    },
    "ltd": 123,
    "ltw": 123,
    "ltnc": 123
  },
  "segments": [
    "New_Players",
    "Medium_Depositors"
  ],
  "settings": {
    "marketing_email_subscription": true,
    "email_validation": true,
    "email_account_activation": "<string>",
    "marketing_sms_subscription": true,
    "sms_validation": true,
    "sms_account_activation": "<string>",
    "want_bonus": true
  }
}

Authorizations

Authorization
string
header
required

API Bearer token. For this demo, any non-empty string is accepted.

Headers

X-Session-ID
string
required

Player session ID

Path Parameters

playerId
string
required

Response

Player profile retrieved successfully

id
string
Example:

"5832"

name
string
Example:

"Michael Rodriguez"

email
string<email>
phone
string
Example:

"+49 174 1234567"

currency
string
Example:

"EUR"

language
string
Example:

"German"

registration_date
string<date-time>
ftd_date
string<date-time>

First deposit date

last_login
string<date-time>
kyc_status
enum<string>
Available options:
not_started,
pending,
in_review,
approved,
rejected
withdrawal_status
string
Example:

"Active"

affiliate_name
string
Example:

"AffCo Direct"

affiliate_source
string
Example:

"Google"

vip_manager
string
Example:

"Sarah Johnson"

blocked
boolean
Example:

false

balances
object
kpi
object

Key Performance Indicators

segments
string[]
Example:
["New_Players", "Medium_Depositors"]
settings
object