# countries Get all available countries for the store ## Authentication > **Public Access**: Accessible with the public API key ## Query Structure ```graphql { countries { # Fields from Country type } } ``` ## Arguments This query accepts no arguments. ## Return Type Returns a list of [`Country`](/reference/storefront/1.3.0/objects/country) objects containing information about each available country in the store. ## Example ```graphql { countries { code name continent } } ``` ## Related Types - [`Country`](/reference/storefront/1.3.0/objects/country)