Loading API DOCS...

BIN Lookup

Get any BIN/Card number to full bank information with this API.

Endpoint

GET https://api.lmnx9.shop/bin-lookup.php?bin=

Code Examples

cURL
curl -X GET "https://api.lmnx9.shop/bin-lookup.php?bin=" -H "Content-Type: application/json"
JavaScript
fetch("https://api.lmnx9.shop/bin-lookup.php?bin=")
  .then(function(r){return r.json()})
  .then(function(d){console.log(d)});
Python
import requests
r = requests.get("https://api.lmnx9.shop/bin-lookup.php?bin=")
print(r.json())
PHP
<?php
$d = file_get_contents("https://api.lmnx9.shop/bin-lookup.php?bin=");
print_r(json_decode($d, 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"
}