A look at the Wikipedia API

In this article, we look at Wikipedia API. Stop talking, show me the code :)

Get a summary of the text

// Get "Water" Summary
https://en.wikipedia.org/api/rest_v1/page/summary/W
ater
// Summary API
https://LANG.wikipedia.org/api/rest_v1/page/summary/S
EARCH
LANG: This is summary language, (en,de,tr)
SEARCH: This is summary of text

The response is a JSON

https://en.wikipedia.org/api/rest_v1/page/summary/Water Response

Full Source Code Example

Run the Code

https://codepen.io/hasandelibas/full/KKQVPvm

Get Related Pages

// https://en.wikipedia.org/api/rest_v1/page/related/Water
/*
Returns
* Carbon dioxide
* Hypothetical types of biochemistr
* Greenhouse effect
* .....

--

--