Get customer cards
It is possible to get the card data of a certain customer through their customer ID using the SDK below. For details on request parameters, check the Cards API.
<?php
$customer = MercadoPago\Customer::find_by_id($id);
$cards = $customer->cards();
?>