BIN Lookup Tool
Instantly lookup Bank Identification Numbers. Get detailed information about card issuers, countries, and card types.
Single BIN Lookup
Try:
550012 (MasterCard DE)
550014 (MasterCard EC)
550016 (Maestro BR)
550017 (MasterCard VN)
550018 (MasterCard CH)
Looking up BIN information...
BIN Details
550012
Bulk BIN Lookup
Up to 100 BINs per requestProcessing bulk lookup...
Results (0 found)
| BIN | Brand | Type | Issuer | Country |
|---|
API Usage
// Public API (No authentication - Rate limited)
curl -X GET "http://localhost:8080/api/public/lookup?bin=550012"
// Secure API with API Key (Higher limits)
curl -X GET "http://localhost:8080/api/secure/v1/lookup?bin=550012" \
-H "X-API-Key: YOUR_API_KEY_HERE"
// Bulk Lookup with API Key
curl -X POST "http://localhost:8080/api/secure/v1/bulk-lookup" \
-H "X-API-Key: YOUR_API_KEY_HERE" \
-H "Content-Type: application/json" \
-d '["550012", "550014", "550015"]'
// Search BINs
curl -X GET "http://localhost:8080/api/secure/v1/search?q=MASTERCARD" \
-H "X-API-Key: YOUR_API_KEY_HERE"
// Get Statistics
curl -X GET "http://localhost:8080/api/stats"