NID Server Copy
Get NID & DOB to full server copy via json response - Monthly Subscription
Endpoint
GET
https://api.lmnx9.shop/server-copy.php?nid=&dob=&key=
Code Examples
cURL
curl -X GET "https://api.lmnx9.shop/server-copy.php?nid=&dob=&key=" -H "Content-Type: application/json"JavaScript
fetch("https://api.lmnx9.shop/server-copy.php?nid=&dob=&key=")
.then(function(r){return r.json()})
.then(function(d){console.log(d)});Python
import requests
r = requests.get("https://api.lmnx9.shop/server-copy.php?nid=&dob=&key=")
print(r.json())PHP
<?php
$d = file_get_contents("https://api.lmnx9.shop/server-copy.php?nid=&dob=&key=");
print_r(json_decode($d, true));Example Response
{
"success": true,
"developer": "DARK LMNx9",
"telegram": "@x_LMNx9",
"data": {
"nameEn": "MD. SHAFIUL ISLAM",
"nameBn": "মোঃ সাফিউল ইসলাম",
"nid": "4215300643",
"pin": "20001014074000492",
"dob": "2000-11-03",
"mobile": null,
"gender": "",
"religion": "",
"bloodGroup": "B+",
"occupation": "",
"fatherName": "মোঃ জাহিদুল ইসলাম",
"motherName": "মোছাঃ সাহিদা বেগম",
"fatherNid": "",
"motherNid": "",
"spouseName": "",
"photo": "assets/images/nidprofilepic/20001014074000492_1718374899.jpeg",
"pre_division": "রাজশাহী",
"pre_district": "বগুড়া",
"pre_upozila": null,
"pre_unionOrWard": null,
"pre_postOffice": "হাটফুলবাড়ী",
"pre_postCode": null,
"pre_mouzaOrMoholla": null,
"pre_villageorroad": null,
"pre_region": "রাজশাহী",
"per_division": "রাজশাহী",
"per_district": "বগুড়া",
"per_upozila": null,
"per_unionOrWard": null,
"per_postOffice": "হাটফুলবাড়ী",
"per_postCode": null,
"per_mouzaOrMoholla": null,
"per_villageorroad": null,
"per_region": "রাজশাহী"
}
}