A RESTful API that returns how much similar two texts are using Natural Language Processing. Information is saved to a Mongo Database.
https://virgoaugustine.github.io/text-similarity-frontend
POST
: Register as a new user to access the API
{
"name": "",
"username": "",
"email": "",
"password":""
}
POST
: Login as an existing user to access the API
{
"username": "",
"password":""
}
POST
: Find the similarity between two texts.
{
"username": "",
"text1":"",
"text2":""
}
POST
: Refill a user's tokens
{
"username": "",
"admin_password": "",
"refillNumber": ""
}