Visa BIN Lookup
Look up Bank Identification Numbers for Visa cards.
About Visa BINs
BIN Prefix Range 4 Card Length 13, 16, or 19 digits
Visa Inc. is the world's largest payment network. Visa cards are issued by thousands of banks globally and always begin with the digit 4. Founded in 1958, Visa processes billions of transactions annually across 200+ countries.
Visa BIN Lookup via API
Look up any Visa 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": 4}' 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: 4 })
});
const data = await response.json();
// Returns: scheme, funding, brand, category, country, issuer, etc.