Diners Club BIN Lookup
Look up Bank Identification Numbers for Diners Club cards.
About Diners Club BINs
BIN Prefix Range 36, 38, 300-305 Card Length 14-16 digits
Diners Club International is one of the oldest charge card networks. Diners Club cards typically start with 36, 38, or 300-305. Now owned by Discover, it maintains a presence in premium travel and entertainment markets.
Diners Club BIN Lookup via API
Look up any Diners Club 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": 36}' 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: 36 })
});
const data = await response.json();
// Returns: scheme, funding, brand, category, country, issuer, etc.