# 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 [`StorePolicies`](/reference/storefront/1.3.0/objects/store-policies) object containing the store's policies including terms and conditions, privacy policy, shipping policy, and refund policy. ## Example ```graphql query { policies { termsAndConditions { title body } privacyPolicy { title body } shippingPolicy { title body } refundPolicy { title body } } } ``` ## Related Types - [`StorePolicies`](/reference/storefront/1.3.0/objects/store-policies)