FREE API
BIN Lookup
Get any BIN/Card number to full bank information with this API.
GET
https://api.lmnx9.shop/bin-lookup.php?bin=
Code Examples
curl -X GET "https://api.lmnx9.shop/bin-lookup.php?bin=" -H "Content-Type: application/json"
fetch("https://api.lmnx9.shop/bin-lookup.php?bin=")
.then(function(r) { return r.json(); })
.then(function(data) { console.log(data); });import requests
r = requests.get("https://api.lmnx9.shop/bin-lookup.php?bin=")
print(r.json())<?php
$data = file_get_contents("https://api.lmnx9.shop/bin-lookup.php?bin=");
print_r(json_decode($data, true));Example Response
{
"success": true,
"bin": "62246463",
"data": {
"number": [],
"scheme": "unionpay",
"type": "credit",
"brand": "Consumer Credit - Core Plus",
"country": {
"numeric": "156",
"alpha2": "CN",
"name": "China",
"emoji": "🇨🇳",
"currency": "CNY",
"latitude": 35,
"longitude": 105
},
"bank": []
},
"developer": "DARK LMNx9",
"telegram": "@x_LMNx9"
}