Number to NID
Get any Bangladeshi number to full nid information, Monthly.
Endpoint
GET
https://api.lmnx9.shop/nid.php?number=&key=
Code Examples
cURL
curl -X GET "https://api.lmnx9.shop/nid.php?number=&key=" -H "Content-Type: application/json"JavaScript
fetch("https://api.lmnx9.shop/nid.php?number=&key=")
.then(function(r){return r.json()})
.then(function(d){console.log(d)});Python
import requests
r = requests.get("https://api.lmnx9.shop/nid.php?number=&key=")
print(r.json())PHP
<?php
$d = file_get_contents("https://api.lmnx9.shop/nid.php?number=&key=");
print_r(json_decode($d, true));Example Response
{
"developer": "DARK LMNx9",
"telegram": "@x_LMNx9",
"number": "01698736509",
"code": 200,
"status": "success",
"message": "Data retrieved successfully",
"data": {
"name": "নাসরিন সুলতানা",
"nameEn": "Nasrin Sultana",
"nationalId": "2633724756",
"dateOfBirth": "1 May 1986",
"dateOfBirthBn": "1 মে 1986",
"pin": "",
"voter_no": "627183580636",
"sl_no": 4318,
"district": "খুলনা",
"voterAreaCode": 627183,
"father": "করিম মোল্লা",
"mother": "আমেনা সুলতানা",
"address": "House: H-978, গ্রাম/রাস্তা: দক্ষিণপাড়া, রূপসা, ডাকঘর: চট্টগ্রাম-৪০০০, খুলনা",
"addressPerm": "Home/Holding: H-978, Village/Road: Dakshinpara, Rupsha, Post Office: Chattogram-4000, Khulna",
"photo": "https://nidgov.bd/API/vhj69gkG7hkHbxF78gj/ServerCopy/Profile_Pic/2633724756.png"
}
}