How can I view all Stripe fees?

This Transform enables you to pull a table of Stripe fees and the transactions on which these fees were incurred.

with fees as (
    
    select 
        balance_transaction_id,
        amount,
        application,
        currency,
        description,
        type
    from stripe.fee
)

select * 
from fees