Cek Akun Game
Melakukan pengecekan akun game, saat ini tersedia untuk Free Fire, Mobile Legend, dan Higgs
Endpoint
https://v1.apigames.id/merchant/[merchant_id]/cek-username/[game_code]?user_id=[user_id]&signature=[singature]
HTTP Method
GET
Request
Deskripsi
Berikut adalah parameter yang di harapkan
Parameter | Deskripsi | Tipe Data | Wajib |
---|---|---|---|
merchant_id | Merchant ID Anda Lihat Pengaturan Secret Key | String | Ya |
game_code | Kode game yang ingin dicek tersedia mobilelegend , freefire | String | Ya |
user_id | User ID akun yang akan dicek | String | Ya |
signature | Signature Cek akun dengan formula md5(merchant_id+secret_key) | String | Ya |
Contoh
https://v1.apigames.id/merchant/YOUR-MERCHANT-ID/cek-username/mobilelegend?user_id=101990303&signature=e27e38e3f9gd78dfe93t2898b74982b9
Response Cek Akun Freefire
{
"status": 1,
"rc": 0,
"message": "Data Found",
"data": {
"is_valid": true,
"username": "¥Vino_TZY™"
},
"ts": 1650529219
}"status": 1
}
Response Cek Akun Mobile Legend
{
"status": 1,
"rc": 0,
"message": "Data Found",
"data": {
"is_valid": true,
"username": "•CUMAN BISA MM•"
},
"ts": 1650529102
}
Response Gagal
{
"status": 1,
"rc": 0,
"message": "Data Not Found",
"data": {
"is_valid": false,
"username": ""
},
"ts": 1650529145
}