# locales Get all published locales/languages available in the store. ## Authentication > **Public Access**: Accessible with the public API key ## Query Structure ```graphql { locales { # Fields from Locale type } } ``` ## Arguments This query accepts no arguments. ## Return Type Returns an array of [`Locale`](/reference/storefront/1.3.0/objects/locale) objects containing information about each available locale/language in the store. ## Example ```graphql query { locales { code name nativeName } } ``` ## Related Types - [`Locale`](/reference/storefront/1.3.0/objects/locale)