BIN API

Unearth information about a card's bank, issuer, country, type, and validity using our BIN API. Identify pre-paid, gift, and credit cards to counter payment fraud effectively.

Good to know

  • Use the Fraud API if you want to use the BIN API together with any of our Email API, IP API, and Device Fingerprinting.
  • All SEON API requests are case-sensitive. Please follow the formatting below to avoid errors.

Request

 

Request Attributes

ValueRequired
include
idno

 

HTTP Endpoint

GET

https://api.seon.io/SeonRestService/bin-api/v1/[bin]?include=id
PHP
Generic
Generic

Response

The endpoint returns JSON structured response.

JSON Attributes

Type
bin_bank
string
bin_card
string
bin_type
string
bin_level
string
bin_country
string
bin_country_code
string
bin_website
string
bin_phone
string
bin_valid
boolean
card_issuer
string
id
Response
{
 "success": true,
 "error": {},
 "data": {
  "bin_bank": "NORTHERN NECK STATE BANK",
  "bin_card": "VISA",
  "bin_type": "DEBIT",
  "bin_level": "BUSINESS",
  "bin_country": "UNITED STATES",
  "bin_country_code": "US",
  "bin_website": "",
  "bin_phone": "(804) 435-1626",
  "bin_valid": true,
  "card_issuer": "VISA",
  "id": "465789"
 }
}