JCB BIN Lookup
Look up Bank Identification Numbers for JCB cards.
About JCB BINs
BIN Prefix Range 3528-3589 Card Length 16 digits
Japan Credit Bureau (JCB) is an international payment network based in Tokyo. JCB cards start with 3528-3589 and are widely accepted throughout Asia and increasingly worldwide.
JCB BIN Lookup via API
Look up any JCB 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": 3528}' 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: 3528 })
});
const data = await response.json();
// Returns: scheme, funding, brand, category, country, issuer, etc.