Our coffee bean detection website is a platform designed to assist coffee enthusiasts in identifying different types of coffee beans. Our team has worked tirelessly to create a website that is both informative and user-friendly. We understand the importance of knowing the exact type of coffee beans used in coffee-making, and have made it our mission to provide accurate and detailed information about each type of coffee bean. Through our website, users can learn about the origins, taste profiles for each type of coffee bean.
For now, this application can only be used for:
- Arabica Gayo
- Robusta Gayo
In the future we will update so that it can be used for other coffee beans type.
-
Endpoint :
/api/check/ -
HTTP Method :
GET -
Request Body :
{
"key": "secretKey"
}- Respone Body (Success):
{
"error": false,
"message": "Engine Ready",
"status": "Online"
}-
Endpoint :
/api/check/disable -
HTTP Method :
POST -
Request Body :
{
"key": "secretKey"
}- Respone Body (Success):
{
"error": false,
"message": "Engine turned off",
"status": null
}-
Endpoint :
/api/check/enable -
HTTP Method :
POST -
Request Body :
{
"key": "secretKey"
}- Respone Body (Success):
{
"error": false,
"message": "Engine turned on",
"status": null
}-
Endpoint :
/api/detection -
HTTP Method :
POST -
Request Body :
imageasfile
-
Respone Body (Success):
{
"coffeeType": "Robusta Gayo",
"error": false,
"message": "Success"
}- Respone Body (Fail):
{
"coffeeType": null,
"error": true,
"message": "Can't get Image"
}or
{
"coffeeType": null,
"error": true,
"message": "Not Detected"
}-
Endpoint :
/api/retrain -
HTTP Method :
POST -
Request Body :
datasetasfile
-
Respone Body (Success):
{
"error": false,
"message": "Retrain requested successfuly"
}- Respone Body (Fail):
{
"error": true,
"message": "Can't get Datasets file"
}


