Getting Online Store's Meta Title using graphql api

I did figure out that the description is available on the Shop.description, but can’t seem to find out how to retrieve Meta Title yet.

1 Like

Hey @mundane_zhou :waving_hand: - I did some digging into this and I’m not certain if we surface the meta title through the API - I’ll speak with some folks internally to confirm this and get back in touch with you once I have some more info - speak soon! :slight_smile:

Hey @mundane_zhou :waving_hand: - just following up here. I was able to confirm with some devs internally that it’s not currently possible to grab the meta title, but I will put through a feature request for you since I definitely agree this would be a good thing to offer through the API.

Let me know if I can help out further :slight_smile:

thank you, You are so nice

1 Like

I have almost the same issue with shop’s description. I’ve created short description on page https://admin.shopify.com/store/{myShopDomain}/settings/general/branding


Currently, I can’t get this short description via Graphq Admin api. Is this possible?

Hey @Viktor_Punko :waving_hand: - you should be able to grab that short description info through the Storefront API, like this:

{
  shop {
    brand {
      shortDescription
    }
  }
}

Since the shop’s branding settings mainly interface with the storefront (through themes, checkout, etc), those API endpoints “live” on the Storefront API.

Hope this helps!