API Overview
The XSTBot Game Stalk API allows you to retrieve player information from popular mobile games including Free Fire, Mobile Legends. The API returns player details such as username, user ID, and zone information.
Base URL
https://ceknickname.com
Endpoints
Free Fire
https://ceknickname.com/api/game/free-fire?id=123456789
Parameter |
Type |
Required |
Description |
id |
String |
Yes |
Free Fire player ID |
Mobile Legends
https://ceknickname.com/api/game/mobile-legends?id=123456789&zone=1234
Parameter |
Type |
Required |
Description |
id |
String |
Yes |
Mobile Legends player ID |
zone |
String |
Yes |
Mobile Legends player zone |
Response Format
Success Response (with Zone)
{
"code": 200,
"status": "true",
"creator": ceknickname.vercel.app,
"message": "ID berhasil ditemukan",
"data": {
"username": "XSTBot Store",
"user_id": "123456789",
"zone": "1234"
}
}
Success Response (without Zone)
{
"code": 200,
"status": "true",
"creator": ceknickname.vercel.app,
"message": "ID berhasil ditemukan",
"data": {
"username": "XSTBot Store",
"user_id": "123456789",
"zone": "null"
}
}
Failed Response
{
"code": 404,
"status": "false",
"creator": ceknickname.vercel.app,
"message": "ID tidak ditemukan"
}
Status Codes
Code |
Status |
Description |
200 |
Success |
The request was successful and player information was found |
404 |
Not Found |
The player ID was not found or is invalid |