UnionPay BIN Lookup
Look up Bank Identification Numbers for UnionPay cards.
About UnionPay BINs
BIN Prefix Range 62 Card Length 16-19 digits
China UnionPay is the world's largest card issuer by number of cards. UnionPay cards start with 62 and are the dominant payment method in China with growing international acceptance.
UnionPay BIN Lookup via API
Look up any UnionPay BIN using our API:
Terminal
curl -X POST "https://api.binlookupapi.com/v1/bin" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"number": 62}' Terminal
// JavaScript example
const response = await fetch('https://api.binlookupapi.com/v1/bin', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({ number: 62 })
});
const data = await response.json();
// Returns: scheme, funding, brand, category, country, issuer, etc.