Skip to content

Account Init

This endpoint is used to create or initialize a new player account in the system before they can perform any transactions or play games.


fetch('https://API-PLATFORM/account-init', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Api-Id': 'YOUR_SECRET_TOKEN',
'Api-Key': 'YOUR_SECRET_TOKEN'
},
body: JSON.stringify({
user_id: '',
nickname: '',
currency: 'KRW'
})
})
Terminal window
headers
POST /account-init
Content-Type: application/json
Api-Id: your-agent-id
Api-Key: your-secret-key
body
{
"user_id": "testuser",
"nickname": "testusernickname",
"currency": "USD",
}
{
"code": 0,
}

📌
For a comprehensive guide on how this works, please refer to the Common and Transfer Introduction or Seamless Introduction sections within the Introduction page.