I need just to retrieve image inside a Wikipedia page with a specific size, and image may have description plus width and height.
Update:
I am asking about retrieve All images inside wikipedia article Not wikipedia article main images!.
I need just to retrieve image inside a Wikipedia page with a specific size, and image may have description plus width and height.
Update:
I am asking about retrieve All images inside wikipedia article Not wikipedia article main images!.
To retrieve all images from a MediaWiki article, query for the images
property:
http://en.wikipedia.org/w/api.php?action=query&prop=images&titles=Main%20Page
Then you can ask for paths to specific sizes:
https://en.wikipedia.org/w/api.php?action=query&titles=File:Bubolz%20Grass.jpg&prop=imageinfo&&iiprop=url&iiurlwidth=220
Finally, you can use the first query as a generator for the second, to get all the data in one request:
https://en.wikipedia.org/w/api.php?action=query&generator=images&titles=Albert%20Einstein&prop=imageinfo&&iiprop=url&iiurlwidth=220
Note that this is part of the MediaWiki core API, and not specific to Wikipedia or even the Wikimedia universe.