Wikipedia API examples. For advanced usage see Official Mediawiki API documentation
Quick intro:
- All client requests should contain
&origin=*
because of CORS. - Search term should be capitalize (
Tori Amos
nottori amos
) if multiple words. - You could request any wiki language you like (for example:
sh.wikipedia.org
orde.wikipedia.org
)
GET full article for the requested title (titles=belgrade
), with images (pageimages
) and article URL (inprop=url
). Also, follows redirection (redirects
) if necessary:
Previous request with minimal params:
en.wikipedia.org/w/api.php?action=query&titles=belgrade&prop=extracts&format=json
GET first paragraph of an article:
en.wikipedia.org/w/api.php?action=query&titles=Belgrade&prop=extracts&format=json&exintro=1
To GET first 10 search results with extract and thumbnail image (prop=extracts|pageimages
). Results is HTML by default, but we want json
format:
GET first 20 search results (srlimit
) with short info (prop=info
):
GET first 20 search results (gsrlimit
) with extract and thumbnail image (prop=extracts|pageimages
). This time, article extract is set to plain text (explaintext
):
Advanced search params:
gsrsearch=intitle:belgrade
(word "belgrade" is in title)gsrsearch=prefix:belgrade
(article's title starts with the word "belgrade")
If you have problems, append &origin=*
at the end of the route.
Get source of the main image of the article:
en.wikipedia.org/w/api.php?action=query&titles=Belgrade&prop=pageimages&format=json&pithumbsize=250
Get all images from the article:
en.wikipedia.org/w/api.php?action=query&titles=belgrade&prop=images&format=json
GET first 20 image files (gsrnamespace=6
) from Wikimedia Commons with the term "Belgrade" in the filename (gsrsearch=intitle:Belgrade
). Requested thumbnail size is 250px (pithumbsize=250
):
Previous request without some params:
Remember, if you have problems, append &origin=*
at the end of the route.
GET wiki quotes for requested term (titles=Zen
). The API is the same, just the domain is different (wikiquote.org
):