Rest API made with Python, for our EzyVet Hackethon 2022 project
ENDPOINTS:
Endpoint: '/predictHealthyWeight' Request Type: 'get' params:
- breed (String)
- sex (String: Male, Female, Neutered, Spayed)
- age (float: in years)
- weight (float: in KG)
- height (float: in CM) returns: String ('Underweight', 'Healthy', 'Overweight')
Endpoint: '/predictIllness' Request Type: 'get' params:
- breed (String)
- sex (String: Male, Female, Neutered, Spayed)
- age (float: in years)
- weight (float: in KG)
- height (float: in CM) returns: String (xx.xx%). Example: 54.22%
Endpoint: '/predictBehaviour' Request Type: 'get' params:
- breed (String)
- sex (String: Male, Female, Neutered, Spayed)
- age (float: in years)
- weight (float: in KG)
- height (float: in CM) returns: String ('Energetic', 'Loving', 'Protective', 'Loud', 'Quiet', 'Enthusiastic', 'Active', 'Calm', 'Relaxed', 'Content', 'Happy'). Example: Protective, Loud and Active