Edge Nodes Active
Build Game
Bots Faster.
High-performance data infrastructure for developers. Simple, fast, and free.
Latency
120ms
Uptime
99.9%
Region
Global
Available Endpoints
MLBB Global
Ready
Free Fire
Soon
Documentation
Mobile Legends Endpoint
GET Request
?id={id}&serverid={sid}
Sample JSON Output
{
"status": "success",
"result": {
"nickname": "SOLO LAK Gaming",
"country": "Cambodia"
}
}
Bot Templates
Pre-built Integration Logic
Telegram Bot
Node-Telegram-Bot-API
bot.onText(/\/check (.+) (.+)/, async (msg, match) => {
const [id, sid] = [match[1], match[2]];
const { data } = await axios.get(`API_URL?id=${id}&serverid=${sid}`);
bot.sendMessage(msg.chat.id, `Player: ${data.result.nickname}`);
});
Discord Bot
Discord.js v14
const res = await axios.get(url);
const embed = new EmbedBuilder()
.setTitle('Validation Success')
.setDescription(`User: ${res.data.result.nickname}`);
interaction.reply({ embeds: [embed] });
WhatsApp Bot
Baileys SDK
case 'checkml': {
let [id, sid] = text.split('|');
let res = await fetch(`url?id=${id}&serverid=${sid}`);
let json = await res.json();
m.reply(`*Nickname:* ${json.result.nickname}`);
} break;