Skip to content

Akash97p/plaki

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PLAKI : Places wiki API


About

  • 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

Node.js Example

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));
    });

JSON Structure

About

API to get basic information about places from wikipedia

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published