fast BIN lookup โ check card issuer, brand, type & country
6-digit or 8-digit BINs ยท bulk lookup supported
| BIN | Brand | Type | Category | Issuer / Bank | Country |
|---|
no results yet โ enter a BIN and click lookup
explore the BIN database
filter by bin prefix, brand, type, country, or issuer
| BIN | Brand | Type | Category | Issuer / Bank | Country |
|---|
search to explore the database
your saved BINs
stored privately for this browser ยท click a star to remove
| BIN | Brand | Type | Category | Issuer / Bank | Country |
|---|
no starred BINs yet โ click the โ on any result to save it here
Single BIN lookup
curl https://binq.cc/api/bin/445520
{
"query": "445520",
"found": true,
"record": {
"bin": "445520",
"brand": "VISA",
"type": "CREDIT",
"category": "SIGNATURE",
"issuer": "AL RAJHI BANKING...",
"country_name": "SAUDI ARABIA",
"iso_code2": "SA",
"iso_code3": "SAU"
}
}
Bulk lookup (up to 100 BINs)
curl -X POST https://binq.cc/api/bin/bulk \
-H "Content-Type: application/json" \
-d '{"bins": ["445520", "521893"]}'
curl -X POST https://binq.cc/api/bin/bulk \
-H "Content-Type: application/json" \
-d '{"raw": "445520, 521893, 54241810"}'
Browse the dataset with filters and pagination
curl "https://binq.cc/api/bin/search?bin=4455&limit=20&offset=0" curl "https://binq.cc/api/bin/search?brand=VISA&sort=country_name&order=asc&limit=20&offset=0" curl "https://binq.cc/api/bin/search?type=CREDIT&category=PLATINUM" curl "https://binq.cc/api/bin/search?issuer=CHASE"
Params: bin (prefix match), brand, type, category, country, issuer, sort (bin|brand|type|category|issuer|country_name), order (asc|desc), limit (max 1000), offset
Dataset statistics
curl https://binq.cc/api/stats
{
"total_bins": 350000,
"last_updated": "2026-01-01T00:00:00Z",
"by_brand": {"VISA": 120000, "MASTERCARD": 80000, ...},
"by_type": {"CREDIT": 150000, "DEBIT": 180000, ...},
"by_country": {"UNITED STATES": 50000, ...}
}
Health check
curl https://binq.cc/healthz
{"status":"ok"}