POSTbankcard-bin-international
International BIN Lookup
Identify card scheme (Visa/Mastercard/JCB/AMEX), card type, issuing country and bank from the first 6-8 digits of any international card number.
Documentation
International BIN Lookup
Given the first 6 digits (BIN) of an international credit/debit card, returns:
- Card scheme (Visa, Mastercard, JCB, American Express, Discover, ...)
- Card type (Credit / Debit / Prepaid)
- Issuing country + flag + currency
- Issuing bank name / website / phone
Differences vs. `bankcard-info`
bankcard-infocovers only mainland China cards- This API covers global card schemes with issuing-country identification
Integration Examples
Includes ready-to-use Shell, Python, Go, Java, and PHP examples for direct integration.
Request Example
{
"bankcard": "4242424242"
}Response Example
{
"code": 200,
"message": "success",
"data": {
"scheme": "Visa",
"card_type": "Credit",
"country_name": "United states of america",
"country_code": "us",
"country_flag": "🇺🇸",
"currency": "United States dollar",
"currency_code": "USD",
"bank_name": "JPMORGAN CHASE BANK NA"
}
}Request Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| bankcard | string | 4242424242 |
Response Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| code | number | 200 |
| message | string | success |
| data | object | {...} |
| data.scheme | string | Visa |
| data.card_type | string | Credit |
| data.country_name | string | United states of america |
| data.country_code | string | us |