Skip to main content

Card Details

Get Card Details

Returns the bin details of a card.

GET
https://api.basistheory.com/enrichments/card-details
Copy

Request

curl --location 'https://api.basistheory.com/enrichments/card-details?bin=411111' \
--header 'BT-API-KEY: <API_KEY>' \
--header 'Content-Type: application/json'

Query Parameters

NameTypeDescription
binStringThe first 6 digits of the card.

Response

Returns the bin details of the card.

{
"brand": "Visa",
"funding": "Debit",
"issuer": {
"country": "US",
"name": "JPMORGAN CHASE BANK, N.A."
},
"segment": "Consumer",
"additional": [
{
"brand": "Visa",
"funding": "Credit",
"issuer": {
"country": "US",
"name": "JPMORGAN CHASE BANK, N.A."
},
"segment": "Commercial"
}
]
}
NameTypeDescription
brandStringThe brand of the card.
fundingStringThe funding type of the card.
issuerCardIssuerDetailsThe issuer of the card.
segmentStringThe segment of the card.
additionalCardInfo[]Additional card details.

Card Issuer Details

NameTypeDescription
countryStringThe country of the card.
nameStringThe name of the issuer.

Card Info

NameTypeDescription
brandStringThe brand of the card.
fundingStringThe funding type of the card.
issuerCardIssuerDetailsThe issuer of the card.
segmentStringThe segment of the card.