PAID API
Number to Location
Get exact live location and information from any number, Monthly.
GET
https://api.lmnx9.shop/location.php?number=&key=
Code Examples
curl -X GET "https://api.lmnx9.shop/location.php?number=&key=" -H "Content-Type: application/json"
fetch("https://api.lmnx9.shop/location.php?number=&key=")
.then(function(r) { return r.json(); })
.then(function(data) { console.log(data); });import requests
r = requests.get("https://api.lmnx9.shop/location.php?number=&key=")
print(r.json())<?php
$data = file_get_contents("https://api.lmnx9.shop/location.php?number=&key=");
print_r(json_decode($data, true));Example Response
{
"developer": "DARK LMNx9",
"telegram": "@x_LMNx9",
"code": 200,
"status": "success",
"number": "01858764230",
"data": {
"owner": "Unknown User",
"location": {
"division": "Dhaka",
"district": "Mirpur",
"area": "Section-10",
"road": "Block C",
"house": "H-51"
},
"gps": {
"latitude": 23.71637,
"longitude": 90.3244
},
"liveMap": "https://maps.google.com/?q=23.71637,90.3244",
"lastUpdate": "2026-05-25 13:28:51"
}
}