IMEI Track
Track any IMEI to device live location/network/info etc. Monthly.
Endpoint
GET
https://api.lmnx9.shop/imei.php?imei=&key=
Code Examples
cURL
curl -X GET "https://api.lmnx9.shop/imei.php?imei=&key=" -H "Content-Type: application/json"JavaScript
fetch("https://api.lmnx9.shop/imei.php?imei=&key=")
.then(function(r){return r.json()})
.then(function(d){console.log(d)});Python
import requests
r = requests.get("https://api.lmnx9.shop/imei.php?imei=&key=")
print(r.json())PHP
<?php
$d = file_get_contents("https://api.lmnx9.shop/imei.php?imei=&key=");
print_r(json_decode($d, true));Example Response
{
"status": true,
"message": "Device located successfully",
"device_info": {
"imei": "356938035643809",
"brand": "Vivo",
"model": "Vivo V30",
"android": "Android 12.0",
"battery": "38%",
"storage": "128 GB",
"storage_used": "38%",
"ram": "16 GB",
"rooted": false,
"screen_on": true,
"last_reboot": "2026-05-20 05:32:42"
},
"location": {
"latitude": 23.994584,
"longitude": 88.666608,
"accuracy": "25 meters",
"district": "Khulna",
"area": "Sonadanga",
"country": "Bangladesh",
"timezone": "Asia/Dhaka (UTC+6)",
"google_maps": "https://www.google.com/maps?q=23.994584,88.666608"
},
"network": {
"carrier": "Robi",
"mcc_mnc": "470-03",
"network_type": "5G",
"signal": "-69 dBm",
"ip": "10.224.148.169",
"mac": "FB:61:93:DC:5A:28",
"wifi_ssid": "Robi_Fibre"
},
"sim": [
{
"slot": "SIM 1",
"operator": "Banglalink",
"number": "+8801938329509",
"imsi": "47087124145111",
"balance": "null",
"data": "null"
},
{
"slot": "SIM 2",
"operator": "Robi",
"number": "+8801886409893",
"imsi": "47059830638430",
"balance": "null",
"data": "null"
}
],
"last_seen": "2026-05-26 15:43:29",
"timestamp": 1779813001,
"developer": "DARK LMNx9",
"telegram": "@x_LMNx9"
}