Retrieve a BIN
Returns details for a BIN.
Parameters
bin
string
A 4-6 digit number to identify a bin. If only 4 or 5 digits is provided, the response would return partial identifiers.
Required
Returns
Returns details for a BIN.
- cURL
- Node.js
- Python
GET
/bins?bin={bin}
curl https://production.methodfi.com/bins?bin=414720 \
-H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
GET
/bins?bin={bin}
const bin = await method.bins.get('414720');
GET
/bins?bin={bin}
bin = method.bins.get('414720')
RESPONSE
{
"id": "bin_fWXVJF8HWYSdQ",
"bin": "414720",
"brand": "visa",
"issuer": "CHASE BANK USA, N.A.",
"type": "credit",
"category": "SIGNATURE",
"bank_url": "www.chase.com",
"sample_pan": "4147206867378753"
}