Ender Docs

BIN Lookup

Look up Bank Identification Number (BIN) information - free tool with no credit cost.

Overview

Look up detailed information about card BINs (Bank Identification Numbers). Get issuer name, card brand, type, country, and more.

Free Tool

BIN Lookup is completely free - no credits required! API key is needed for authentication.

Endpoints

Get Tool Info

GET /v1/tools/bin-lookup

Lookup BINs

POST /v1/tools/bin-lookup

Request

Headers

HeaderRequiredDescription
Authorizationβœ…Your API key
Content-Typeβœ…application/json

Body Parameters

ParameterTypeRequiredDescription
binsstring[]βœ…Array of 6-digit BIN numbers (max 100)

Example Request

curl -X POST https://api.ender.black/v1/tools/bin-lookup \
  -H "Authorization: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "bins": ["453201", "411111", "520000"]
  }'

Response

{
  "success": true,
  "data": {
    "bins": [
      {
        "bin": "453201",
        "brand": "Visa",
        "type": "debit",
        "product": "Visa Classic",
        "issuer": "Chase Bank",
        "country_code": "US",
        "country_name": "United States",
        "country_emoji": "πŸ‡ΊπŸ‡Έ"
      },
      {
        "bin": "411111",
        "brand": "Visa",
        "type": "credit",
        "product": "Visa Signature",
        "issuer": "Bank of America",
        "country_code": "US",
        "country_name": "United States",
        "country_emoji": "πŸ‡ΊπŸ‡Έ"
      }
    ],
    "summary": {
      "requested": 3,
      "unique": 3,
      "found": 2
    }
  }
}

Response Fields

FieldTypeDescription
binsarrayArray of BIN information objects
bins[].binstringThe BIN number
bins[].brandstringCard brand (Visa, Mastercard, etc)
bins[].typestringCard type (debit, credit, prepaid)
bins[].productstringProduct name
bins[].issuerstringIssuing bank name
bins[].country_codestringISO country code
bins[].country_namestringCountry name
bins[].country_emojistringCountry flag emoji
summary.requestednumberTotal BINs requested
summary.uniquenumberUnique BINs after deduplication
summary.foundnumberBINs with information found

Limits

  • Maximum BINs per request: 100
  • BIN format: 6 digits (longer inputs are truncated)
  • Credits: Free

Use Cases

  1. Card verification - Identify card issuer and type before processing
  2. Fraud detection - Verify card origin matches expected country
  3. Analytics - Categorize transactions by card brand and issuer

On this page