Checker
Age Mlbb
Endpoint ini digunakan untuk mengecek umur akun Mobile Legends berdasarkan User ID dan Server ID.
URL Endpoint
Gunakan metode POST untuk mengakses endpoint berikut:
/private_ageHeaders
Pastikan untuk menyertakan header berikut pada request:
| Key | Value |
|---|---|
| Content-Type | application/x-www-form-urlencoded |
Body Request
| Field | Type | Wajib | Deskripsi |
|---|---|---|---|
| user_id | string | Ya | User ID akun Mobile Legends. |
| server | string | Ya | Server / Zone ID akun Mobile Legends. |
Contoh Request
<?php
$postdata = [
"user_id" => "123456789",
"server" => "1234"
];
$ch = curl_init();
curl_setopt_array($ch, [
CURLOPT_URL => "https://yobistore.com/api/private_age",
CURLOPT_POST => true,
CURLOPT_POSTFIELDS => http_build_query($postdata),
CURLOPT_RETURNTRANSFER => true
]);
$response = curl_exec($ch);
curl_close($ch);
echo $response;Contoh Response Berhasil
{
"success": true,
"message": "success",
"data": {
"id": "123456789",
"zone": "1234",
"nickname": "Player Name",
"country": "Indonesia",
"country_code": "ID",
"country_flag": "🇮🇩",
"created_at": "2021-05-12",
"age": {
"tahun": 5,
"bulan": 2,
"hari": 17
}
}
}Contoh Response Gagal
{
"success": false,
"message": "User ID required"
}{
"success": false,
"message": "Clashing"
}{
"success": false,
"message": "Connection Failed"
}Field Response
Data
| Field | Type | Deskripsi |
|---|---|---|
| id | string | User ID akun Mobile Legends. |
| zone | string | Server / Zone ID akun. |
| nickname | string | Nama akun Mobile Legends. |
| country | string | Negara akun terdeteksi. |
| country_code | string | Kode negara akun. |
| country_flag | string | Emoji bendera negara. |
| created_at | string | Tanggal pembuatan akun. |
| age | object | Informasi umur akun. |
Age
| Field | Type | Deskripsi |
|---|---|---|
| tahun | integer | Umur akun dalam tahun. |
| bulan | integer | Sisa umur akun dalam bulan. |
| hari | integer | Sisa umur akun dalam hari. |
Status Response
| Status | Deskripsi |
|---|---|
| true | Permintaan berhasil diproses. |
| false | Permintaan gagal diproses. |
[!TIP]
Pastikan parameter
user_iddanserversesuai dengan akun Mobile Legends yang ingin diperiksa.Contoh:
User ID : 123456789 Server : 1234