Skip to main content
Participant
December 22, 2023
Answered

Access to "Editorial use only" Metadata via Adobe Stock API

  • December 22, 2023
  • 1 reply
  • 451 views

I am currently working on a project that involves integrating Adobe Stock assets, and I need clarification regarding the Adobe Stock API's capabilities. Specifically, I'm interested in understanding whether it's possible to access metadata that indicates if an asset is designated for "Editorial Use Only." This feature is crucial for our workflow, as we need to ensure that the assets we use comply with the relevant licensing terms.My research so far has not yielded clear information on whether the Adobe Stock API provides this specific type of metadata. If it does, could you please guide me on how to access it?
 Additionally, if there are any specific API endpoints or parameters that I should be aware of for this purpose, that information would be greatly appreciated.Thank you in advance for your assistance and insights.

This topic has been closed for replies.
Correct answer Christopher at Adobe

@Abambo is correct. There is metadata that identifies these assets, but there should be no need for this because Editorial assets are hidden from the API search. The only way you could accidentally license such an asset is if you manually entered the ID. Assets for editorial use are a tiny fragment of overall images. There are over 350M images available on Stock, and less than 1% of those are for Editorial use. 

 

However, if you are concerned you might have an Editorial image, you can use the Files API with the result columns "is_editorial" and "is_illustrative." See below.

 

Is this for an Enterprise customer?

 

https://stock.adobe.io/Rest/Media/1/Files?locale=en-US&ids=693225215,346308958&result_columns%5B%5D=is_editorial&result_columns%5B%5D=is_illustrative

 

{
  "files": [
    {
      "is_editorial": false,
      "is_illustrative": true
    },
    {
      "is_editorial": false,
      "is_illustrative": false
    }
  ]
}

 

1 reply

Abambo
Community Expert
Community Expert
December 22, 2023

I would guess, that inside of the metadata, the editorial use only if coded, otherwise the Adobe website would not be able to display that. It should also be possible to filter those assets out, so that they do not show up in your query. Let's see if @Christopher at Adobe has a more qualified answer to this.

ABAMBO | Hard- and Software Engineer | Photographer
Christopher at Adobe
Community Manager
Christopher at AdobeCommunity ManagerCorrect answer
Community Manager
December 22, 2023

@Abambo is correct. There is metadata that identifies these assets, but there should be no need for this because Editorial assets are hidden from the API search. The only way you could accidentally license such an asset is if you manually entered the ID. Assets for editorial use are a tiny fragment of overall images. There are over 350M images available on Stock, and less than 1% of those are for Editorial use. 

 

However, if you are concerned you might have an Editorial image, you can use the Files API with the result columns "is_editorial" and "is_illustrative." See below.

 

Is this for an Enterprise customer?

 

https://stock.adobe.io/Rest/Media/1/Files?locale=en-US&ids=693225215,346308958&result_columns%5B%5D=is_editorial&result_columns%5B%5D=is_illustrative

 

{
  "files": [
    {
      "is_editorial": false,
      "is_illustrative": true
    },
    {
      "is_editorial": false,
      "is_illustrative": false
    }
  ]
}