# 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/v1/objects/payment-method) objects containing available payment method information. ## Example ```graphql { paymentMethods { id name displayName description isActive } } ``` ## Related Types - [`PaymentMethod`](/reference/storefront/v1/objects/payment-method)