[11:13:44] Hi, may I ask a question on sparql query on wikidata? Is this the right place to get help on it? [11:19:08] sure, ask. :) [11:35:27] I'm trying to get some images from main italian cities like rome [11:35:27]     SELECT ?municipality ?municipalityLabel ?wikipediaUrl ?image ?author WHERE { [11:35:28]       ?municipality wdt:P806 'H501'. [11:35:28]       ?wikipediaUrl schema:about ?municipality; [11:35:29]                     schema:inLanguage "it"; [11:35:29]                     schema:isPartOf . [11:35:30]       ?municipality wdt:P18 ?image. [11:35:30] OPTIONAL { ?image wdt:P50 ?author. } [11:35:31]       SERVICE wikibase:label { bd:serviceParam wikibase:language "it". } [11:35:31]     } [11:35:32] limit 1 [11:35:32] the point is I'd like to have the author, the license of the image, and generally all the info I need to use for the right attribution if I may use the photo. [11:35:33] I've tried many attempts to extract these info, but I've failed [14:29:28] dhagdwydygddasb hdgshryanc26sgwuaxaxgfaiuio [14:56:53] keesjdhhddwoq [15:32:16] Salander93: I wouldn’t rely on all that information being available in Wikidata… I’d suggest getting the license info for a file from the Commons API: https://commons.wikimedia.org/w/api.php?action=query&format=json&prop=imageinfo&titles=File%3APanorama%20vom%20Petersdom.jpg&formatversion=2&iiprop=extmetadata [15:32:49] there you have AttributionRequired, Artist, LicenseUrl, LicenseShortName, Credit and more [16:25:59] Lucas_WMDE thank you so much for the advice