How can I view all the cards in our Stripe account?

This Transform pulls a table of unique cards and their details in your Stripe account.

with cards as (
    
    select 
        id as card_id,
        brand,
        country,
        created as created_at,
        customer_id,
        name,
        recipient,
        funding
    from stripe.card
)

select * 
from cards