Hi Troy, Using the ArcGIS API you can 'get' the item in question via its ID or by searching your content, and then check properties such as description (item.description), thumbnail (item.thumbnail), summary (item.snippet), and its terms of use (item.licenseInfo). These values will be empty strings or null if not already present (except in the case of the thumbnail, which instead would be a path to the default thumbnail). See here for a deeper explanation and a few examples of this. See here for the ArcGIS Python API reference with regards to content. This will list all the properties available to you. Hopefully this answers your question. Let me know if you have any more! Cheers, Josh
... View more