INFORMATION
 
FILES / DOWNLOADS
 
KNOWLEDGE BASE
 
DATA SAMPLE, SPECIFICATIONS, AND INTEGRATION

Full Data Dictionary & Field Specifications

BinBase Database 2026 contains up to 29 parameters per record. The data is delivered in a semicolon-separated (;) CSV format, encoded in UTF-8.

1. Standard & Extended License (Fields 1-14)

Core attributes for basic identification and routing.

# Field Name Description / Possible Values Example
1BINRange prefix (6 to 11 digits). Primary Key.467122502
2BrandCard network (VISA, MASTERCARD, AMEX, DISCOVER, etc.)VISA
3IssuerIssuing bank or financial institution name.CHASE BANK
4TypeFunding source: DEBIT, CREDIT, or CHARGE.DEBIT
5CategoryProduct level: CLASSIC, PLATINUM, WORLD, ENHANCED, etc.PLATINUM
6Country NameFull ISO name of the issuing country.UNITED STATES
7ISO A22-letter country code (ISO 3166-1 alpha-2).US
8ISO A33-letter country code (ISO 3166-1 alpha-3).USA
9ISO Numeric3-digit numeric country code (ISO 3166-1 numeric).840
10Issuer URLOfficial website of the issuing organization.chase.com
11Issuer PhoneCustomer support phone number of the issuer.1-800-935-9935
12PAN LengthStandard card number length for this range.16
13UsageMarket segment: PERSONAL or COMMERCIAL.PERSONAL
14RegulatedUS Durbin Amendment indicator (Y / N).Y

2. Custom Data Pack (Fields 15-29)

Advanced transactional attributes for high-load payment processors.

# Field Name Description / Business Value Example
15Network_NamePrimary US Debit network (STAR, NYCE, CU24).STAR
16Network_IDInternal identifier for routing logic.1002
17L2_IndicatorLevel 2 data support (Tax info support).Y
18L3_IndicatorLevel 3 data support (Line item detail).Y
19FF_DomFast Funds Domestic support (Instant payouts).Y
20FF_CrossFast Funds Cross-border support.N
21MS_IndMastercard MoneySend support indicator.Y
24MT_IndVisa Money Transfer (Visa Direct) indicator.Y
25OG_FF_DomOnline Gambling Fast Funds (Domestic).Y
26OG_FF_CrossOnline Gambling Fast Funds (Cross-border).N
27Pull_DomSupport for Pull-funds (Direct Debit).Y
28TokenTokenized Range: (Apple/Google Pay) Y / N.Y
29CurrencyDefault transaction currency (ISO 4217).USD

3. Integration Logic (Waterfall Search)

To ensure 100% accuracy, use this Descending Precision algorithm:

$bin = substr($pan, 0, 11); // Start with 11 digits
while (strlen($bin) >= 6) {
    $data = query_db($bin);
    if ($data) return $data; // Stop at most precise match
    $bin = substr($bin, 0, -1); // Trim one digit and retry
}

Looking for more?

If you need custom fields like Risk Scores or Bank-to-BIN mappings, visit our Extra Options.

View Extra Fields