--- title: shop - Storefront API description: The shop associated with the storefront access token. api_version: unstable api_name: storefront source_url: html: 'https://shopify.dev/docs/api/storefront/unstable/queries/shop' md: 'https://shopify.dev/docs/api/storefront/unstable/queries/shop.md' --- # shop query The shop associated with the storefront access token. ## Possible returns * Shop [Shop!](https://shopify.dev/docs/api/storefront/unstable/objects/Shop) Shop represents a collection of the general settings and information about the shop. * brand [Brand](https://shopify.dev/docs/api/storefront/unstable/objects/Brand) The shop's branding configuration. * customer​Account​Url [String](https://shopify.dev/docs/api/storefront/unstable/scalars/String) The URL for the customer account (only present if shop has a customer account vanity domain). * description [String](https://shopify.dev/docs/api/storefront/unstable/scalars/String) A description of the shop. * id [ID!](https://shopify.dev/docs/api/storefront/unstable/scalars/ID) non-null A globally-unique ID. * metafield [Metafield](https://shopify.dev/docs/api/storefront/unstable/objects/Metafield) Token access required A [custom field](https://shopify.dev/docs/apps/build/custom-data), including its `namespace` and `key`, that's associated with a Shopify resource for the purposes of adding and storing additional information. * namespace [String](https://shopify.dev/docs/api/storefront/unstable/scalars/String) ### Arguments The container the metafield belongs to. If omitted, the app-reserved namespace will be used. * key [String!](https://shopify.dev/docs/api/storefront/unstable/scalars/String) required The identifier for the metafield. *** * metafields [\[Metafield\]!](https://shopify.dev/docs/api/storefront/unstable/objects/Metafield) non-null Token access required A list of [custom fields](https://shopify.dev/docs/apps/build/custom-data) that a merchant associates with a Shopify resource. * identifiers [\[Has​Metafields​Identifier!\]!](https://shopify.dev/docs/api/storefront/unstable/input-objects/HasMetafieldsIdentifier) required ### Arguments The list of metafields to retrieve by namespace and key. The input must not contain more than `250` values. *** * money​Format [String!](https://shopify.dev/docs/api/storefront/unstable/scalars/String) non-null A string representing the way currency is formatted when the currency isn’t specified. * name [String!](https://shopify.dev/docs/api/storefront/unstable/scalars/String) non-null The shop’s name. * payment​Settings [Payment​Settings!](https://shopify.dev/docs/api/storefront/unstable/objects/PaymentSettings) non-null Settings related to payments. * primary​Domain [Domain!](https://shopify.dev/docs/api/storefront/unstable/objects/Domain) non-null The primary domain of the shop’s Online Store. * privacy​Policy [Shop​Policy](https://shopify.dev/docs/api/storefront/unstable/objects/ShopPolicy) The shop’s privacy policy. * sanitized [Boolean](https://shopify.dev/docs/api/storefront/unstable/scalars/Boolean) Default:false ### Arguments Sanitize the policy content. *** * refund​Policy [Shop​Policy](https://shopify.dev/docs/api/storefront/unstable/objects/ShopPolicy) The shop’s refund policy. * sanitized [Boolean](https://shopify.dev/docs/api/storefront/unstable/scalars/Boolean) Default:false ### Arguments Sanitize the policy content. *** * shipping​Policy [Shop​Policy](https://shopify.dev/docs/api/storefront/unstable/objects/ShopPolicy) The shop’s shipping policy. * sanitized [Boolean](https://shopify.dev/docs/api/storefront/unstable/scalars/Boolean) Default:false ### Arguments Sanitize the policy content. *** * ships​To​Countries [\[Country​Code!\]!](https://shopify.dev/docs/api/storefront/unstable/enums/CountryCode) non-null Countries that the shop ships to. * shop​Pay​Installments​Pricing [Shop​Pay​Installments​Pricing](https://shopify.dev/docs/api/storefront/unstable/objects/ShopPayInstallmentsPricing) Token access required The Shop Pay Installments pricing information for the shop. * social​Login​Providers [\[Social​Login​Provider!\]!](https://shopify.dev/docs/api/storefront/unstable/objects/SocialLoginProvider) non-null The social login providers for customer accounts. * subscription​Policy [Shop​Policy​With​Default](https://shopify.dev/docs/api/storefront/unstable/objects/ShopPolicyWithDefault) The shop’s subscription policy. * sanitized [Boolean](https://shopify.dev/docs/api/storefront/unstable/scalars/Boolean) Default:false ### Arguments Sanitize the policy content. *** * terms​Of​Service [Shop​Policy](https://shopify.dev/docs/api/storefront/unstable/objects/ShopPolicy) The shop’s terms of service. * sanitized [Boolean](https://shopify.dev/docs/api/storefront/unstable/scalars/Boolean) Default:false ### Arguments Sanitize the policy content. *** *** ## Examples * ### shop reference ## Query Reference ```graphql { shop { # shop fields } } ```