How to get an app marketingLabels using the Marketplace REST API?

Hi,

How can we get the marketingLabels attribute for a specific app using the Marketplace REST API?

There is a marketingLabel filter that can be used when getting an app information (https://developer.atlassian.com/platform/marketplace/rest/v2/api-group-apps/#api-addons-get). However, there is no marketingLabel or similar attribute in the response.

There is a marketingLabels property available on the GraphQL API at GraphQL Gateway. For example this query

query MyQuery {
  marketplaceApp(appId: "1210934") {
    marketingLabels
  }
}

Returns this

{
  "data": {
    "marketplaceApp": {
      "marketingLabels": [
        "Atlassian Verified",
        "Extend Stash",
        "Featured",
        "mac-cart"
      ]
    }
  },
...

But I cannot find it on the REST API.

Thanks!