Apiary Powered Documentation
Sign in with Apiary account.
https://goodgoodeat.com
https://www.npmjs.com/package/request
const request = require('request');
request('https://goodgoodeat.com', function (error, response, body) {
console.error('error:', error);
console.log('statusCode:', response && response.statusCode);
console.log('body:', body);
});
https://goodgoodeat.com/restaurants
https://goodgoodeat.com/restaurants/1
https://goodgoodeat.com/restaurants/1
https://goodgoodeat.com/restaurants
https://goodgoodeat.com/restaurants/1
/restaurants?_limit=5
/restaurants?${new-restaurant}
Response 200 (application/json)
[
{
"id": "1",
"name": "Good Good Eat",
"address": "Somewhere in Taipei"
"stars": "4.5"
},
{
"id": "2",
"name": "Not Bad Eat",
"address": "Somewhere in Yilan"
"stars": "3.8"
},
{
"id": "3",
"name": "So So Eat",
"address": "Somewhere in Taoyuan"
"stars": "3.5"
},
]