# paymentMethods Get all available payment methods. ## Authentication > **Public Access**: Accessible with the public API key ## Query Structure ```graphql { paymentMethods { # Fields from PaymentMethod type } } ``` ## Arguments This query accepts no arguments. ## Return Type Returns a list of [`PaymentMethod`](/reference/storefront/1.3.0/objects/payment-method) objects containing available payment method information. ## Example ```graphql { paymentMethods { id name code description } } ``` ## Related Types - [`PaymentMethod`](/reference/storefront/1.3.0/objects/payment-method)