-
Plaki : API to get basic information about places from wikipedia.
- description : Brief description
- coordinates : Latitude and Longitude
- extract : Summary
- image : Wiki image link
- pageid : Wiki page ID
const https = require('https')
const place = 'maldives';
var options = {
hostname: 'plaki.herokuapp.com',
port: 443,
path:`api?place=${place}`
}
const req = https.get(options, res => {
res.on("data", function (response) {
console.log(JSON.parse(response));
});