--- title: 'Liquid objects: shop' description: >- Information about the store, such as the store address, the total number of products, and various settings. api_name: liquid source_url: html: 'https://shopify.dev/docs/api/liquid/objects/shop' md: 'https://shopify.dev/docs/api/liquid/objects/shop.md' --- # shop Information about the store, such as the store address, the total number of products, and various settings. ## Properties * * accepts\_​gift\_​cards [boolean](https://shopify.dev/docs/api/liquid/basics#boolean) * Returns `true` if the store accepts gift cards. Returns `false` if not. * address [address](https://shopify.dev/docs/api/liquid/objects/address) * The address of the store. * brand [brand](https://shopify.dev/docs/api/liquid/objects/brand) * The [brand assets](https://help.shopify.com/manual/promoting-marketing/managing-brand-assets) for the store. * collections\_​count [number](https://shopify.dev/docs/api/liquid/basics#number) * The number of collections in the store. * currency [string](https://shopify.dev/docs/api/liquid/basics#string) * The currency of the store. * customer\_​accounts\_​enabled [boolean](https://shopify.dev/docs/api/liquid/basics#boolean) * Returns `true` if the store shows a login link. Returns `false` if not. * customer\_​accounts\_​optional [boolean](https://shopify.dev/docs/api/liquid/basics#boolean) * Returns `true` if customer accounts are optional to complete checkout. Returns `false` if not. * description [string](https://shopify.dev/docs/api/liquid/basics#string) * The [description](https://help.shopify.com/manual/online-store/setting-up/preferences#edit-the-title-and-meta-description) of the store. * domain [string](https://shopify.dev/docs/api/liquid/basics#string) * The primary domain of the store. * email [string](https://shopify.dev/docs/api/liquid/basics#string) * The [sender email](https://help.shopify.com/manual/intro-to-shopify/initial-setup/setup-your-email#change-your-sender-email-address) of the store. * enabled\_​currencies array of [currency](https://shopify.dev/docs/api/liquid/objects/currency) * The currencies that the store accepts. Tip You can get the store's currency with [`shop.currency`](https://shopify.dev/docs/api/liquid/objects/shop#shop-currency). * enabled\_​payment\_​types array of [string](https://shopify.dev/docs/api/liquid/basics#string) * The accepted payment types on the store. The payment types are based on the store's enabled [payment providers](https://help.shopify.com/manual/payments) and the customer's current region and currency. Tip You can output an `svg` logo for each payment type with the [`payment_type_svg_tag` filter](https://shopify.dev/docs/api/liquid/filters/payment_type_svg_tag). Alternatively, you can get the source URL for each `svg` with the [`payment_type_img_url` filter](https://shopify.dev/docs/api/liquid/filters/payment_type_img_url). * id [string](https://shopify.dev/docs/api/liquid/basics#string) * The ID of the store. * metafields * The [metafields](https://shopify.dev/docs/api/liquid/objects/metafield) applied to the store. Tip To learn about how to create metafields, refer to [Create and manage metafields](https://shopify.dev/apps/metafields/manage) or visit the [Shopify Help Center](https://help.shopify.com/manual/metafields). * money\_​format [currency](https://shopify.dev/docs/api/liquid/objects/currency) * The money format of the store. * money\_​with\_​currency\_​format [currency](https://shopify.dev/docs/api/liquid/objects/currency) * The money format of the store with the currency included. * name [string](https://shopify.dev/docs/api/liquid/basics#string) * The name of the store. * password\_​message [string](https://shopify.dev/docs/api/liquid/basics#string) * The password page message of the store. * permanent\_​domain [string](https://shopify.dev/docs/api/liquid/basics#string) * The `.myshopify.com` domain of the store. * phone [string](https://shopify.dev/docs/api/liquid/basics#string) * The phone number of the store. * policies array of [policy](https://shopify.dev/docs/api/liquid/objects/policy) * The policies for the store. The policies are set in the store's [Policies settings](https://www.shopify.com/admin/settings/legal). ![](https://shopify.dev/images/icons/32/lightbulbscroll.png)![](https://shopify.dev/images/icons/32/lightbulbscroll-dark.png)ExampleOutput the policies ```liquid ``` ##### Code ``` ``` ##### Data ``` { "shop": { "policies": [ "

We have a 30-day return policy, which means you have 30 days after receiving your item to request a return. ...

", "

This Privacy Policy describes how polinas-potent-potions.myshopify.com (the “Site” or “we”) collects, uses, and discloses your Personal Information when you visit or make a purchase from the Site. ...

", "OVERVIEW
This website is operated by Polina's Potent Potions. Throughout the site, the terms “we”, “us” and “our” refer to Polina's Potent Potions. ...", "\n

All orders are processed within X to X business days (excluding weekends and holidays) after receiving your order confirmation email. You will receive another notification when your order has shipped. ... 

\n

" ] } } ``` ## Output ```html ``` * privacy\_​policy [policy](https://shopify.dev/docs/api/liquid/objects/policy) * The privacy policy for the store. * products\_​count [number](https://shopify.dev/docs/api/liquid/basics#number) * The number of products in the store. * published\_​locales array of [shop\_locale](https://shopify.dev/docs/api/liquid/objects/shop_locale) * The locales (languages) that are published on the store. * refund\_​policy [policy](https://shopify.dev/docs/api/liquid/objects/policy) * The refund policy for the store. * secure\_​url [string](https://shopify.dev/docs/api/liquid/basics#string) * The full URL of the store, with an `https` protocol. * shipping\_​policy [policy](https://shopify.dev/docs/api/liquid/objects/policy) * The shipping policy for the store. * subscription\_​policy [policy](https://shopify.dev/docs/api/liquid/objects/policy) * The subscription policy for the store. * terms\_​of\_​service [policy](https://shopify.dev/docs/api/liquid/objects/policy) * The terms of service for the store. * types array of [string](https://shopify.dev/docs/api/liquid/basics#string) * All of the product types in the store. ![](https://shopify.dev/images/icons/32/lightbulbscroll.png)![](https://shopify.dev/images/icons/32/lightbulbscroll-dark.png)ExampleOutput the product types ```liquid {% for type in shop.types %} {{- type | link_to_type }} {% endfor %} ``` ##### Code ``` {% for type in shop.types %} {{- type | link_to_type }} {% endfor %} ``` ##### Data ``` { "shop": { "types": [ "", "Animals & Pet Supplies", "Baking Flavors & Extracts", "Container", "Cooking & Baking Ingredients", "Dried Flowers", "Fruits & Vegetables", "Gift Cards", "Health", "Health & Beauty", "Invisibility", "Love", "Music & Sound Recordings", "Seasonings & Spices", "Water" ] } } ``` ## Output ```html Unknown Type Animals & Pet Supplies Baking Flavors & Extracts Container Cooking & Baking Ingredients Dried Flowers Fruits & Vegetables Gift Cards Health Health & Beauty Invisibility Love Music & Sound Recordings Seasonings & Spices Water ``` * url [string](https://shopify.dev/docs/api/liquid/basics#string) * The full URL of the store. * vendors array of [string](https://shopify.dev/docs/api/liquid/basics#string) * All of the product vendors for the store. ![](https://shopify.dev/images/icons/32/lightbulbscroll.png)![](https://shopify.dev/images/icons/32/lightbulbscroll-dark.png)ExampleOutput the vendors ```liquid {% for vendor in shop.vendors %} {{- vendor | link_to_vendor }} {% endfor %} ``` ##### Code ``` {% for vendor in shop.vendors %} {{- vendor | link_to_vendor }} {% endfor %} ``` ##### Data ``` { "shop": { "vendors": [ "Clover's Apothecary", "Polina's Potent Potions", "Ted's Apothecary Supply" ] } } ``` ## Output ```html Clover's Apothecary Polina's Potent Potions Ted's Apothecary Supply ``` ## Deprecated Properties * * enabled\_​locales array of [shop\_locale](https://shopify.dev/docs/api/liquid/objects/shop_locale) Deprecated * The locales (languages) that are published on the store. Deprecated Deprecated because the name didn't make it clear that the returned locales were published. The `shop.enabled_locales` property has been replaced by [`shop.published_locales`](https://shopify.dev/docs/api/liquid/objects/shop#shop-published_locales). * locale [shop\_locale](https://shopify.dev/docs/api/liquid/objects/shop_locale) Deprecated * The currently active locale (language). Deprecated Deprecated because this value is contextual to the request and not a property of the shop resource. The `shop.locale` property has been replaced by [request.locale](https://shopify.dev/docs/api/liquid/objects/request#request-locale). * metaobjects Deprecated * All of the [metaobjects](https://shopify.dev/docs/api/liquid/objects/metaobject) of the store. Deprecated The `shop.metaobjects` property has been replaced by [`metaobjects`](https://shopify.dev/docs/api/liquid/objects/metaobjects). * taxes\_​included [boolean](https://shopify.dev/docs/api/liquid/basics#boolean) Deprecated * Returns `true` if prices include taxes. Returns `false` if not. Deprecated Deprecated because whether or not prices have taxes included is dependent on the customer's country. The `shop.taxes_included` property has been replaced by [cart.taxes\_included](https://shopify.dev/docs/api/liquid/objects/cart#cart-taxes_included). ```json { "accepts_gift_cards": true, "address": {}, "brand": {}, "collections_count": 7, "currency": "CAD", "customer_accounts_enabled": true, "customer_accounts_optional": true, "description": "Canada's foremost retailer for potions and potion accessories. Try one of our award-winning artisanal potions, or find the supplies to make your own!", "domain": "polinas-potent-potions.myshopify.com", "email": "polinas.potent.potions@gmail.com", "enabled_currencies": [], "enabled_locales": [], "enabled_payment_types": [ "visa", "master", "american_express", "paypal", "diners_club", "discover" ], "id": 56174706753, "locale": "en", "metafields": {}, "metaobjects": {}, "money_format": "${{amount}}", "money_with_currency_format": "${{amount}} CAD", "name": "Polina's Potent Potions", "password_message": "Our store will be opening when the moon is in the seventh house!!", "permanent_domain": "polinas-potent-potions.myshopify.com", "phone": "416-123-1234", "policies": [], "privacy_policy": {}, "products_count": 19, "published_locales": [], "refund_policy": {}, "secure_url": "https://polinas-potent-potions.myshopify.com", "shipping_policy": {}, "subscription_policy": null, "taxes_included": false, "terms_of_service": {}, "types": [ "", "Animals & Pet Supplies", "Baking Flavors & Extracts", "Container", "Cooking & Baking Ingredients", "Dried Flowers", "Fruits & Vegetables", "Gift Cards", "Health", "Health & Beauty", "Invisibility", "Love", "Music & Sound Recordings", "Seasonings & Spices", "Water" ], "url": "https://polinas-potent-potions.myshopify.com", "vendors": [ "Clover's Apothecary", "Polina's Potent Potions", "Ted's Apothecary Supply" ] } ``` ##### Example ``` { "accepts_gift_cards": true, "address": {}, "brand": {}, "collections_count": 7, "currency": "CAD", "customer_accounts_enabled": true, "customer_accounts_optional": true, "description": "Canada's foremost retailer for potions and potion accessories. Try one of our award-winning artisanal potions, or find the supplies to make your own!", "domain": "polinas-potent-potions.myshopify.com", "email": "polinas.potent.potions@gmail.com", "enabled_currencies": [], "enabled_locales": [], "enabled_payment_types": [ "visa", "master", "american_express", "paypal", "diners_club", "discover" ], "id": 56174706753, "locale": "en", "metafields": {}, "metaobjects": {}, "money_format": "${{amount}}", "money_with_currency_format": "${{amount}} CAD", "name": "Polina's Potent Potions", "password_message": "Our store will be opening when the moon is in the seventh house!!", "permanent_domain": "polinas-potent-potions.myshopify.com", "phone": "416-123-1234", "policies": [], "privacy_policy": {}, "products_count": 19, "published_locales": [], "refund_policy": {}, "secure_url": "https://polinas-potent-potions.myshopify.com", "shipping_policy": {}, "subscription_policy": null, "taxes_included": false, "terms_of_service": {}, "types": [ "", "Animals & Pet Supplies", "Baking Flavors & Extracts", "Container", "Cooking & Baking Ingredients", "Dried Flowers", "Fruits & Vegetables", "Gift Cards", "Health", "Health & Beauty", "Invisibility", "Love", "Music & Sound Recordings", "Seasonings & Spices", "Water" ], "url": "https://polinas-potent-potions.myshopify.com", "vendors": [ "Clover's Apothecary", "Polina's Potent Potions", "Ted's Apothecary Supply" ] } ```