# shippingMethods Get all available shipping methods for customers to choose from during checkout. ## Authentication > **Public Access**: Accessible with the public API key ## Query Structure ```graphql { shippingMethods { # ShippingMethod fields } } ``` ## Arguments This query does not accept any arguments. ## Return Type Returns an array of [`ShippingMethod`](/reference/storefront/1.3.0/objects/shipping-method) objects containing available shipping options. ## Example ```graphql { shippingMethods { id name description price estimatedDeliveryDays } } ``` ## Related Types - [`ShippingMethod`](/reference/storefront/1.3.0/objects/shipping-method)