Skip to main content
GET
/
cards
List Cards
curl --request GET \
  --url https://api.fyatu.com/api/v3.20/cards \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "cards": "<array>",
    "pagination": {
      "page": 123,
      "limit": 123,
      "total": 123,
      "pages": 123
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.fyatu.com/llms.txt

Use this file to discover all available pages before exploring further.

Overview

Returns a paginated list of cards issued by your business. Cards are tied to cardholders and card products.

Query Parameters

ParameterTypeDescription
pageintegerPage number (default: 1)
limitintegerResults per page (default: 20, max: 100)
cardholderIdstringFilter by cardholder
productIdstringFilter by card product
programIdstringFilter by card program
statusstringFilter by status: ACTIVE, FROZEN, TERMINATED, PROCESSING, FAILED
schemestringFilter by scheme: VISA, MASTERCARD
currencystringFilter by currency: USD, EUR

Response Fields

FieldTypeDescription
idstringCard ID
cardholderIdstringCardholder this card belongs to
productIdstringCard product used at issuance
programIdstringCard program
nameOnCardstringName printed on the card
last4stringLast 4 digits of card number
maskedNumberstringMasked card number (e.g., ****4829)
expiryDatestringExpiry date (MM/YYYY)
schemestringVISA or MASTERCARD
currencystringUSD or EUR
statusstringCard status
balancenumberCurrent balance
createdAtstringCreation timestamp
Full card number and CVV are not returned in list responses. Use GET /cards/{id} to retrieve sensitive card details.

Authorizations

Authorization
string
header
required

JWT access token obtained from POST /auth/token

Query Parameters

page
integer
default:1
limit
integer
default:20
Required range: x <= 100
status
enum<string>
Available options:
ACTIVE,
FROZEN,
TERMINATED
cardholderId
string
productId
string

Response

Cards retrieved

success
boolean
data
object