Parrot API
Single BIN Lookup
Data & Response Codes
- Pagos Data Dictionary
- AVS Response Codes
- CVV Check Response Codes
- Disbursement Response Codes
- 3DS Response Codes
- Stored Credential Response Codes
- Transaction Status Codes
- Chargeback Reason Codes
- Chargeback Status Codes
- Fee Type Codes
- Refund Status Codes
- Transaction Response Codes (Decline Codes)
Data Ingestion
BIN Database
- BIN Data Tools
- Parrot API
- Parrot Batch
Account Updater
- Account Updater Tools
- Loon API
- Real-Time Loon API
Parrot API
Single BIN Lookup
GET
/
bins
curl --request GET \
--url https://parrot.prod.pagosapi.com/bins \
--header 'x-api-key: <api-key>'
{
"card": {
"number": {
"length": 123
},
"bin_length": 123,
"pagos_bin_length": 123,
"bin_min": "<string>",
"bin_max": "<string>",
"pan_or_token": "<string>",
"virtual_card": true,
"level2": true,
"level3": true,
"alm": true,
"account_updater": true,
"domestic_only": true,
"gambling_blocked": true,
"issuer_currency": "<string>",
"reloadable": true,
"additional_card_brands": [
{
"card_brand": "<string>",
"bin_max": "<string>",
"bin_min": "<string>",
"card_brand_product": "<string>",
"card_brand_bank_name": "<string>",
"ecom_enabled": true,
"billpay_enabled": true
}
],
"card_brand": "<string>",
"card_segment_type": "<string>",
"combo_card": "<string>",
"type": "<string>",
"funding_source": "<string>",
"prepaid": true,
"product": {
"product_id": "<string>",
"product_name": "<string>"
},
"bank": {
"name": "<string>",
"phone": "<string>",
"url": "<string>",
"clean_name": "<string>"
},
"country": {
"alpha2": "<string>",
"numeric": "<string>",
"name": "<string>"
},
"authentication": {
"authentication_required": true,
"authentication_name": "<string>"
},
"cost": {
"interchange": {
"regulated": true,
"regulated_name": "<string>",
"domestic": {
"cap_region_shortname": "<string>",
"cap_advalorem_amount": "<string>",
"cap_type_name": "<string>",
"cap_fixed_amount": "<string>",
"cap_type_qualifier_currency": "<string>",
"cap_type_qualifier_text": "<string>",
"cap_type_qualifier_lower": "<string>",
"cap_type_qualifier_upper": "<string>"
},
"inter": {
"cap_region_shortname": "<string>",
"cap_advalorem_amount": "<string>",
"cap_type_name": "<string>",
"cap_fixed_amount": "<string>",
"cap_type_qualifier_currency": "<string>",
"cap_type_qualifier_text": "<string>",
"cap_type_qualifier_lower": "<string>",
"cap_type_qualifier_upper": "<string>"
},
"intra": {
"cap_region_shortname": "<string>",
"cap_advalorem_amount": "<string>",
"cap_type_name": "<string>",
"cap_fixed_amount": "<string>",
"cap_type_qualifier_currency": "<string>",
"cap_type_qualifier_text": "<string>",
"cap_type_qualifier_lower": "<string>",
"cap_type_qualifier_upper": "<string>"
},
"notes": "<string>"
}
},
"networkfees": {},
"correlation_id": "<string>",
"issuer_supports_tokenization": true,
"multi_account_access_indicator": "<string>",
"shared_bin": true
}
}
Authorizations
Put ONLY your api-key token on textbox below!
Query Parameters
Set to true for enhanced attributes
Bin number (6-10 digits)
Required string length:
6 - 10
Response
200
text/plain
Success
curl --request GET \
--url https://parrot.prod.pagosapi.com/bins \
--header 'x-api-key: <api-key>'
{
"card": {
"number": {
"length": 123
},
"bin_length": 123,
"pagos_bin_length": 123,
"bin_min": "<string>",
"bin_max": "<string>",
"pan_or_token": "<string>",
"virtual_card": true,
"level2": true,
"level3": true,
"alm": true,
"account_updater": true,
"domestic_only": true,
"gambling_blocked": true,
"issuer_currency": "<string>",
"reloadable": true,
"additional_card_brands": [
{
"card_brand": "<string>",
"bin_max": "<string>",
"bin_min": "<string>",
"card_brand_product": "<string>",
"card_brand_bank_name": "<string>",
"ecom_enabled": true,
"billpay_enabled": true
}
],
"card_brand": "<string>",
"card_segment_type": "<string>",
"combo_card": "<string>",
"type": "<string>",
"funding_source": "<string>",
"prepaid": true,
"product": {
"product_id": "<string>",
"product_name": "<string>"
},
"bank": {
"name": "<string>",
"phone": "<string>",
"url": "<string>",
"clean_name": "<string>"
},
"country": {
"alpha2": "<string>",
"numeric": "<string>",
"name": "<string>"
},
"authentication": {
"authentication_required": true,
"authentication_name": "<string>"
},
"cost": {
"interchange": {
"regulated": true,
"regulated_name": "<string>",
"domestic": {
"cap_region_shortname": "<string>",
"cap_advalorem_amount": "<string>",
"cap_type_name": "<string>",
"cap_fixed_amount": "<string>",
"cap_type_qualifier_currency": "<string>",
"cap_type_qualifier_text": "<string>",
"cap_type_qualifier_lower": "<string>",
"cap_type_qualifier_upper": "<string>"
},
"inter": {
"cap_region_shortname": "<string>",
"cap_advalorem_amount": "<string>",
"cap_type_name": "<string>",
"cap_fixed_amount": "<string>",
"cap_type_qualifier_currency": "<string>",
"cap_type_qualifier_text": "<string>",
"cap_type_qualifier_lower": "<string>",
"cap_type_qualifier_upper": "<string>"
},
"intra": {
"cap_region_shortname": "<string>",
"cap_advalorem_amount": "<string>",
"cap_type_name": "<string>",
"cap_fixed_amount": "<string>",
"cap_type_qualifier_currency": "<string>",
"cap_type_qualifier_text": "<string>",
"cap_type_qualifier_lower": "<string>",
"cap_type_qualifier_upper": "<string>"
},
"notes": "<string>"
}
},
"networkfees": {},
"correlation_id": "<string>",
"issuer_supports_tokenization": true,
"multi_account_access_indicator": "<string>",
"shared_bin": true
}
}