Is it possible to get Shopify Market settings?

Hello all,

I’m curious, is it possible to get Shopify Market settings for chosen country - price adjustments, rounding rules, but not only market price?

Hi @iNovikov

Hope you’re having a great day!

Yes, is it possible to get Shopify Market settings for chosen country.
Using marketByGeography via GraphQL Admin API, you could get some market settings (currency settings, web presence, prices list, etc.) based on a country.

Here is an example that I have just done

{
  marketByGeography(countryCode: US) {
    id
    name
    priceList {
      id
      currency
      fixedPricesCount
      name
    }
    catalogs(first: 10) {
      nodes {
        title
        id
        priceList {
          id
          prices(first: 10) {
            nodes {
              compareAtPrice {
                amount
                currencyCode
              }
              price {
                amount
              }
            }
          }
        }
      }
    }
    primary
    webPresence {
      domain {
        marketWebPresence {
          defaultLocale
        }
      }
      alternateLocales
    }
    currencySettings {
      baseCurrency {
        currencyCode
        currencyName
        enabled
        rateUpdatedAt
      }
      localCurrencies
    }
  }
}