# policies Get store policies including terms and conditions, privacy policy, shipping policy, and refund policy. ## Authentication > **Public Access**: Accessible with the public API key ## Query Structure ```graphql { policies { termsAndConditions { # Policy fields } privacyPolicy { # Policy fields } shippingPolicy { # Policy fields } refundPolicy { # Policy fields } } } ``` ## Arguments This query does not accept any arguments. ## Return Type Returns a [`StorePolicies`](/reference/storefront/v1/objects/store-policies) object containing the store's policies including terms and conditions, privacy policy, shipping policy, and refund policy. ## Example ```graphql { policies { termsAndConditions { body title } privacyPolicy { body title } shippingPolicy { body title } refundPolicy { body title } } } ``` ## Related Types - [`StorePolicies`](/reference/storefront/v1/objects/store-policies)