Binlist API
Overview
Binlist gives you free access to a database of Bank Identification Numbers (BINs), the first 6-8 digits of any credit or debit card number that identify the issuing bank and card type. You can look up card details like the bank name, country, card scheme (Visa, Mastercard), and card type without any authentication. This is perfect for beginners who want to detect card types in payment forms.
Beginner Tip
Only send the first 6-8 digits of the card number — never send the full card number to third-party APIs for security reasons. Use the returned "scheme" field to show the correct card logo in your UI.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from Binlist",
"description": "Public access to a database of IIN/BIN information",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
scheme The card network scheme, such as "visa", "mastercard", or "amex". type Whether the card is a "debit" or "credit" card. brand The card product brand, such as "Visa/Dankort" or "Mastercard Gold". country.name The full country name where the issuing bank is located. bank.name The name of the bank that issued the card. prepaid Whether the card is a prepaid card. Implementation Example
const url = "https://binlist.net/";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Fully tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Econdb
⭐ Beginner's PickEcondb provides free access to global macroeconomic data including GDP, inflation, unemployment, and hundreds of other economic indicators from official sources like central banks and statistical agencies.
Fed Treasury
⭐ Beginner's PickThe U.S.
Indian Mutual Fund
⭐ Beginner's PickThe Indian Mutual Fund API gives you free access to the complete history of all mutual funds registered in India.
Portfolio Optimizer
⭐ Beginner's PickPortfolio Optimizer is a free REST API that helps you analyze and optimize investment portfolios using advanced mathematical models.
Razorpay IFSC
⭐ Beginner's PickRazorpay IFSC API lets you look up Indian bank branch details using an 11-character IFSC code — completely free and without authentication.