Discover BIN Lookup
Look up Bank Identification Numbers for Discover cards.
About Discover BINs
BIN Prefix Range 6011, 622126-622925, 644-649, 65 Card Length 16 digits
Discover Financial Services operates the Discover Network and Discover Card. Discover cards use various BIN ranges including 6011, 622126-622925, 644-649, and 65. Popular in the United States with growing international acceptance.
Discover BIN Lookup via API
Look up any Discover 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": 6011}' 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: 6011 })
});
const data = await response.json();
// Returns: scheme, funding, brand, category, country, issuer, etc.