Simply by calling the endpoint, you'll be one step closer to know about authentic Central Java culinary.
cURL
A simple list of foods. Call the endpoint we have prepared below to get started.
curl https://culinaryapi.herokuapp.com/foods |
Response :
[ | |
{ | |
"id": "1", | |
"name": "Timlo" | |
}, | |
{ | |
"id": "2", | |
"name": "Nasi Liwet" | |
}, | |
{ | |
"id": "3", | |
"name": "Sate Buntel" | |
}, | |
{ | |
"id": "4", | |
"name": "Tahu Kupat" | |
} | |
] |
cURL
A simple list of foods. Call the endpoint we have prepared below to get started.
curl https://culinaryapi.herokuapp.com/food/1 |
Response :
{ | |
"id": "1", | |
"name": "Timlo" | |
} |
cURL
A simple list of foods. Call the endpoint we have prepared below to get started.
curl https://culinaryapi.herokuapp.com/food |
Request Body :
{ | |
"id" : "5", | |
"name" : "Pecel" | |
} |
Response :
[ | |
"code :","200", | |
"status :","success" | |
] | |
{ | |
"id":"5", | |
"name":"Pecel" | |
} |
cURL
Available online soon.
Request
Available online soon.
Response
Available online soon.
cURL
A simple list of foods. Call the endpoint we have prepared below to get started.
curl https://culinaryapi.herokuapp.com/foods |
Response :
[ | |
{ | |
"id": "1", | |
"name": "Timlo" | |
}, | |
{ | |
"id": "2", | |
"name": "Nasi Liwet" | |
}, | |
{ | |
"id": "3", | |
"name": "Sate Buntel" | |
}, | |
{ | |
"id": "4", | |
"name": "Tahu Kupat" | |
} | |
] |