List account cards
curl --request POST \
--url https://api.finup.io/backend/cards/get \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"pagination": {
"page": 1,
"per_page": 50,
"sort_by": "created_at",
"sort_direction": "desc"
}
}
'{
"result": [
{
"id": "67c48f6fc8614632e0b338fc",
"name": "Marketing card",
"bin_id": "67bcf2abf8e89d31c5f8995e",
"notes": "Credit",
"status": "Active",
"user": "67aa1b2c3d4e5f6789abcdef",
"EXP": "**/**",
"account": "67c401f9a5b7cde210f44567",
"balance": 50,
"deposit": 1000,
"withdraw": 500,
"spent": 450,
"masked_PAN": "1234 56•• •••• 5678",
"currency": "USD",
"category": "Business",
"created_at": "2023-11-07T05:31:56Z",
"PAN": "1234567812345678",
"CVV": "123",
"3ds": true,
"address": "2381 Zanker Rd Ste 110, San Jose, CA, 95131, US"
}
],
"pagination": {
"current_page": 1,
"total_records": 42,
"total_pages": 5
}
}Cards
List account cards
POST
/
cards
/
get
List account cards
curl --request POST \
--url https://api.finup.io/backend/cards/get \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"pagination": {
"page": 1,
"per_page": 50,
"sort_by": "created_at",
"sort_direction": "desc"
}
}
'{
"result": [
{
"id": "67c48f6fc8614632e0b338fc",
"name": "Marketing card",
"bin_id": "67bcf2abf8e89d31c5f8995e",
"notes": "Credit",
"status": "Active",
"user": "67aa1b2c3d4e5f6789abcdef",
"EXP": "**/**",
"account": "67c401f9a5b7cde210f44567",
"balance": 50,
"deposit": 1000,
"withdraw": 500,
"spent": 450,
"masked_PAN": "1234 56•• •••• 5678",
"currency": "USD",
"category": "Business",
"created_at": "2023-11-07T05:31:56Z",
"PAN": "1234567812345678",
"CVV": "123",
"3ds": true,
"address": "2381 Zanker Rd Ste 110, San Jose, CA, 95131, US"
}
],
"pagination": {
"current_page": 1,
"total_records": 42,
"total_pages": 5
}
}⌘I