Get card types available for the account
curl --request GET \
--url https://api.finup.io/backend/bins \
--header 'x-api-key: <api-key>'const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.finup.io/backend/bins', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.finup.io/backend/bins"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"result": [
{
"bin_id": "67c401f9a5b7cde210f44567",
"id": "67c401f9a5b7cde210f44567",
"exclusive": false,
"BIN": "505849",
"category": "business",
"status": "enabled",
"3ds": true,
"crossborder_fee": false,
"fx_string": "1.5%",
"country": "US",
"address": "<string>",
"balance_possibility": true,
"limit_possibility": true
}
]
}Accounts
Get card types available for the account
GET
/
bins
Get card types available for the account
curl --request GET \
--url https://api.finup.io/backend/bins \
--header 'x-api-key: <api-key>'const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.finup.io/backend/bins', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.finup.io/backend/bins"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"result": [
{
"bin_id": "67c401f9a5b7cde210f44567",
"id": "67c401f9a5b7cde210f44567",
"exclusive": false,
"BIN": "505849",
"category": "business",
"status": "enabled",
"3ds": true,
"crossborder_fee": false,
"fx_string": "1.5%",
"country": "US",
"address": "<string>",
"balance_possibility": true,
"limit_possibility": true
}
]
}