{"info":{"_postman_id":"008a9169-43e9-41b2-b304-c01f500c6053","name":"Diagno AI","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"description":"<html><head></head><body></body></html>","owner":"22007181","collectionId":"008a9169-43e9-41b2-b304-c01f500c6053","publishedId":"2sA3Bj8tvB","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2024-04-15T10:15:18.000Z"},"item":[{"name":"Auth","item":[{"name":"register","id":"e7c60221-6123-4d17-a033-472fd9cec9f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"email\": \"example@gmail.com\",\r\n    \"first_name\": \"first\",\r\n    \"last_name\": \"last\",\r\n    \"password\": \"password\",\r\n    \"password2\": \"password\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://smart-doctor.onrender.com/api/v1/auth/register/","description":"<p>Enables users to create new accounts. It operates through a POST request, where users provide their email, first name, last name, and password in the request body. Upon successful registration, the server responds with a 201 status code, indicating that the registration process was completed successfully. Unlike the login endpoint, the register endpoint does not require authentication since it is used for creating new user accounts. Upon registration, users can utilize their credentials to authenticate and access the API's protected resources.</p>\n","urlObject":{"path":["register",""],"host":["https://smart-doctor.onrender.com/api/v1/auth"],"query":[],"variable":[]}},"response":[{"id":"c084a933-b3bf-4e15-b911-f937d6cbf129","name":"register","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"email\": \"example@gmail.com\",\r\n    \"first_name\": \"first\",\r\n    \"last_name\": \"last\",\r\n    \"password\": \"password\",\r\n    \"password2\": \"password\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://smart-doctor.onrender.com/api/v1/auth/register/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 16 May 2024 15:15:41 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"CF-Ray","value":"884c52fc3ae85453-JIB"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"Vary","value":"Accept, origin, Accept-Encoding"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"referrer-policy","value":"same-origin"},{"key":"rndr-id","value":"14fdb8b6-8299-4812"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-frame-options","value":"DENY"},{"key":"x-render-origin-server","value":"gunicorn"},{"key":"Server","value":"cloudflare"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"email\": \"example@gmail.com\",\n        \"image\": null,\n        \"first_name\": \"first\",\n        \"last_name\": \"last\"\n    },\n    \"message\": \"user registered successfully\"\n}"}],"_postman_id":"e7c60221-6123-4d17-a033-472fd9cec9f0"},{"name":"verify email","id":"8aea9e89-8f7c-4e62-af55-ba402cdf087b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"otp\": \"372421\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://smart-doctor.onrender.com/api/v1/auth/verify-email/","description":"<p>It allows users to verify their email addresses by providing an OTP (One-Time Password) send to their email address provided on registration. This endpoint operates as a POST request, where users need to include the OTP in the request body to verify their email.</p>\n","urlObject":{"path":["verify-email",""],"host":["https://smart-doctor.onrender.com/api/v1/auth"],"query":[],"variable":[]}},"response":[{"id":"7ecdd8d6-2c9d-40ed-809b-7fecb5d829f8","name":"verify email","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"otp\": \"372421\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://smart-doctor.onrender.com/api/v1/auth/verify-email/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 15 Apr 2024 09:21:00 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"CF-Ray","value":"874adcdef84005a3-IAD"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"Vary","value":"Accept, origin, Accept-Encoding"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"referrer-policy","value":"same-origin"},{"key":"rndr-id","value":"729676a7-bfd6-4bda"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-frame-options","value":"DENY"},{"key":"x-render-origin-server","value":"gunicorn"},{"key":"Server","value":"cloudflare"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"account email verified successfully\"\n}"}],"_postman_id":"8aea9e89-8f7c-4e62-af55-ba402cdf087b"},{"name":"Login","id":"e36b9c96-a2a3-45be-96dc-a925bb2778b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"email\": \"calebmwema65@gmail.com\",\r\n    \"password\": \"@Test1234\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://smart-doctor.onrender.com/api/v1/auth/login/","description":"<p>Facilitates user authentication by allowing users to log in to their accounts. It is a POST request that requires the user to provide their email and password in the request body. Upon successful authentication, the server responds with a JSON Web Token (JWT) in the response body, which the user can use for subsequent authenticated requests. The route is secured using JWT-based authentication, where the user's credentials are verified, and if valid, a token is issued for authorization. The JWT token must be included in the Authorization header of subsequent requests to access protected resources.</p>\n","urlObject":{"path":["login",""],"host":["https://smart-doctor.onrender.com/api/v1/auth"],"query":[],"variable":[]}},"response":[{"id":"8a1f460d-e2d1-4baf-a6bc-df7cbff01160","name":"Login","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"email\": \"calebmwema65@gmail.com\",\r\n    \"password\": \"@Test1234\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://smart-doctor.onrender.com/api/v1/auth/login/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 16 May 2024 15:16:48 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"CF-Ray","value":"884c54a8bb6a5453-JIB"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"Vary","value":"Accept, origin, Accept-Encoding"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"referrer-policy","value":"same-origin"},{"key":"rndr-id","value":"8a4e84f9-8d82-440a"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-frame-options","value":"DENY"},{"key":"x-render-origin-server","value":"gunicorn"},{"key":"Server","value":"cloudflare"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"f9fa14ed-3464-4eb0-9f1b-7d321b9e83df\",\n    \"email\": \"calebmwema65@gmail.com\",\n    \"image\": \"http://res.cloudinary.com/di6kcr5zx/image/upload/v1715252171/a4hujie8a0jovjj1ozuo\",\n    \"full_name\": \"caleb mwema\",\n    \"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzE2NzM2NjA4LCJpYXQiOjE3MTU4NzI2MDgsImp0aSI6ImVkNjk0NmIzY2ZmODQxNzRiY2FjZjI5ZGEwYmQ4OTlkIiwidXNlcl9pZCI6ImY5ZmExNGVkLTM0NjQtNGViMC05ZjFiLTdkMzIxYjllODNkZiJ9.u_KLP4v-EYYl4_PCPQoOZKa1Uy2SZmI3YexeTLHk5ZE\",\n    \"refresh_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoicmVmcmVzaCIsImV4cCI6MTcxNTk1OTAwOCwiaWF0IjoxNzE1ODcyNjA4LCJqdGkiOiI3M2UyNDI4NzNjMTQ0MTQ5YTAyMmFmNWI2YTZjZDhiYiIsInVzZXJfaWQiOiJmOWZhMTRlZC0zNDY0LTRlYjAtOWYxYi03ZDMyMWI5ZTgzZGYifQ.bTaPYMjh9f2Cff1jRjGrMsP5xvWiXg9H1uZ0rm6hKFE\"\n}"}],"_postman_id":"e36b9c96-a2a3-45be-96dc-a925bb2778b5"},{"name":"password reset","id":"50d87f02-55c2-4f79-99c8-62863daad6f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"email\": \"mwemac00@gmail.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://smart-doctor.onrender.com/api/v1/auth/password-reset/","description":"<p>Used to initiate the process of resetting a user's password in the Restaurant API. It operates through a POST request, where users provide their email address in the request body.</p>\n","urlObject":{"path":["password-reset",""],"host":["https://smart-doctor.onrender.com/api/v1/auth"],"query":[],"variable":[]}},"response":[{"id":"9023be7b-18a3-429c-8af7-cf8ef19d9e9d","name":"password reset","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"email\": \"mwemac00@gmail.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://smart-restaurant-api.onrender.com/api/v1/auth/password-reset/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 20 Mar 2024 10:51:39 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"CF-Ray","value":"867525e87c9373fa-JNB"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"Vary","value":"Accept-Encoding"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"referrer-policy","value":"same-origin"},{"key":"rndr-id","value":"6969ff47-8b1e-410c"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-frame-options","value":"DENY"},{"key":"x-render-origin-server","value":"gunicorn"},{"key":"Server","value":"cloudflare"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"A link has been sent to your email to reset your password\"\n}"}],"_postman_id":"50d87f02-55c2-4f79-99c8-62863daad6f4"},{"name":"password reset confirm","id":"053b08a7-65be-479d-bc09-e7cfdd72abea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://smart-doctor.onrender.com/api/v1/auth/password-reset-confirm/ZjZiMmRjODctODlmOS00YzY0LThkNzYtMDA5ZjBjNzE1NDYz/c46x7v-22740822b499451e2a145b113118b560","description":"<p>Used to confirm a password reset request made by a user in the Restaurant API. It is typically accessed via a GET request and requires two parameters in the URL: <code>uidb64</code> and <code>token</code>. These parameters are used to identify the user and validate the token associated with the password reset request.</p>\n","urlObject":{"path":["password-reset-confirm","ZjZiMmRjODctODlmOS00YzY0LThkNzYtMDA5ZjBjNzE1NDYz","c46x7v-22740822b499451e2a145b113118b560"],"host":["https://smart-doctor.onrender.com/api/v1/auth"],"query":[],"variable":[]}},"response":[{"id":"17b1a2de-6a60-469a-82e8-ce1ab0c9933a","name":"password reset confirm","originalRequest":{"method":"GET","header":[],"url":"{{url-local}}auth/password-reset-confirm/ZjZiMmRjODctODlmOS00YzY0LThkNzYtMDA5ZjBjNzE1NDYz/c46x7v-22740822b499451e2a145b113118b560"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 20 Mar 2024 10:53:42 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.12.2"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, origin"},{"key":"Allow","value":"GET, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"156"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"credentials valid\",\n    \"uidb64\": \"ZjZiMmRjODctODlmOS00YzY0LThkNzYtMDA5ZjBjNzE1NDYz\",\n    \"token\": \"c46x7v-22740822b499451e2a145b113118b560\"\n}"}],"_postman_id":"053b08a7-65be-479d-bc09-e7cfdd72abea"},{"name":"set new password","id":"77c1d6b0-414e-439b-b6a7-1cfe9762325f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\r\n    \"password\":\"test1234\",\r\n    \"confirm_password\":\"test1234\",\r\n    \"uidb64\": \"ZjZiMmRjODctODlmOS00YzY0LThkNzYtMDA5ZjBjNzE1NDYz\",\r\n    \"token\": \"c46x7v-22740822b499451e2a145b113118b560\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://smart-doctor.onrender.com/api/v1/auth/set-new-password/","description":"<p>Enables users to set a new password after initiating the password reset process. It operates via a PATCH request, requiring users to provide their new password, confirmation of the new password, along with the <code>uidb64</code> and token received during the password reset process.</p>\n","urlObject":{"path":["set-new-password",""],"host":["https://smart-doctor.onrender.com/api/v1/auth"],"query":[],"variable":[]}},"response":[{"id":"9eec3988-743e-466c-a688-5a76e0f72a90","name":"set new password","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\r\n    \"password\":\"test1234\",\r\n    \"confirm_password\":\"test1234\",\r\n    \"uidb64\": \"ZjZiMmRjODctODlmOS00YzY0LThkNzYtMDA5ZjBjNzE1NDYz\",\r\n    \"token\": \"c46x7v-22740822b499451e2a145b113118b560\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url-local}}auth/set-new-password/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 20 Mar 2024 10:54:35 GMT"},{"key":"Server","value":"WSGIServer/0.2 CPython/3.12.2"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept, origin"},{"key":"Allow","value":"PATCH, OPTIONS"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Length","value":"39"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Cross-Origin-Opener-Policy","value":"same-origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Password reset successful\"\n}"}],"_postman_id":"77c1d6b0-414e-439b-b6a7-1cfe9762325f"}],"id":"e960f4a8-9309-4aea-9c72-a590d7ad85be","description":"<p>The Auth folder contains a set of requests and scripts related to user authentication and authorization.</p>\n","_postman_id":"e960f4a8-9309-4aea-9c72-a590d7ad85be"},{"name":"model","item":[{"name":"predict","id":"75f29a4c-7482-4555-a5b5-1264f0e16d54","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzE3MTcyMDY1LCJpYXQiOjE3MTYzMDgwNjUsImp0aSI6IjJiMzU5OTA5NTEyNjRhMDA4MWNjNTNiYTQ1YTZhMjNkIiwidXNlcl9pZCI6ImY5ZmExNGVkLTM0NjQtNGViMC05ZjFiLTdkMzIxYjllODNkZiJ9.uUCtV8cR7uP9sSxzNnsNYscNXY-3RPo23k3tJ1QGdR4","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"symptoms\": \"abnormal_menstruation, cramps, dizziness, weakness_in_limbs, continuous_feel_of_urine\"\n}","options":{"raw":{"language":"json"}}},"url":"https://smart-doctor.onrender.com/api/v1/model/predict/","urlObject":{"path":["predict",""],"host":["https://smart-doctor.onrender.com/api/v1/model"],"query":[],"variable":[]}},"response":[{"id":"974a4114-fb42-449b-b0d1-2438642a373e","name":"predict","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzE3MTcyMDY1LCJpYXQiOjE3MTYzMDgwNjUsImp0aSI6IjJiMzU5OTA5NTEyNjRhMDA4MWNjNTNiYTQ1YTZhMjNkIiwidXNlcl9pZCI6ImY5ZmExNGVkLTM0NjQtNGViMC05ZjFiLTdkMzIxYjllODNkZiJ9.uUCtV8cR7uP9sSxzNnsNYscNXY-3RPo23k3tJ1QGdR4","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"symptoms\": \"abnormal_menstruation, cramps, dizziness, weakness_in_limbs, continuous_feel_of_urine\"\n}","options":{"raw":{"language":"json"}}},"url":"https://smart-doctor.onrender.com/api/v1/model/predict/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 16 May 2024 14:08:32 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"CF-Ray","value":"884bf0999d033da0-LHR"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"Vary","value":"Accept, origin, Accept-Encoding"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"referrer-policy","value":"same-origin"},{"key":"rndr-id","value":"1fd0c96e-9d65-4750"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-frame-options","value":"DENY"},{"key":"x-render-origin-server","value":"gunicorn"},{"key":"Server","value":"cloudflare"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"predicted_disease\": \"Urinary tract infection\",\n    \"description\": \"Urinary tract infection is an infection in any part of the urinary system.\",\n    \"precautions\": [\n        \"drink plenty of water\",\n        \"increase vitamin c intake\",\n        \"drink cranberry juice\",\n        \"take probiotics\"\n    ],\n    \"medications\": [\n        \"'Antibiotics'\",\n        \" 'Urinary analgesics'\",\n        \" 'Phenazopyridine'\",\n        \" 'Antispasmodics'\",\n        \" 'Probiotics'\"\n    ],\n    \"workout\": [\n        \"tay hydrate\"\n    ],\n    \"diets\": [\n        \"'UTI Diet'\",\n        \" 'Hydration'\",\n        \" 'Cranberry juice'\",\n        \" 'Probiotics'\",\n        \" 'Vitamin C-rich foods'\"\n    ]\n}"},{"id":"d1a610bd-d714-4f07-b09b-58f95770a8d5","name":"New Request","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"symptoms\": \"yellow_crust_ooze,red_sore_around_nose,small_dents_in_nails\"\n}","options":{"raw":{"language":"json"}}},"url":"https://smart-doctor.onrender.com/api/v1/model/predict/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 15 Apr 2024 10:45:28 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"CF-Ray","value":"874b58a1680e3937-IAD"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"Vary","value":"Accept, origin, Accept-Encoding"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"referrer-policy","value":"same-origin"},{"key":"rndr-id","value":"2098ef3e-9665-4170"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-frame-options","value":"DENY"},{"key":"x-render-origin-server","value":"gunicorn"},{"key":"Server","value":"cloudflare"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"predicted_disease\": \"Impetigo\",\n    \"description\": \"Impetigo is a highly contagious skin infection causing red sores that can break open.\",\n    \"precautions\": [\n        \"soak affected area in warm water\",\n        \"use antibiotics\",\n        \"remove scabs with wet compressed cloth\",\n        \"consult doctor\"\n    ],\n    \"medications\": [\n        \"['Topical antibiotics', 'Oral antibiotics', 'Antiseptics', 'Ointments', 'Warm compresses']\"\n    ],\n    \"workout\": [\n        \"Maintain good hygiene\",\n        \"Stay hydrated\",\n        \"Consume nutrient-rich foods\",\n        \"Limit sugary foods and beverages\",\n        \"Include foods rich in vitamin C\",\n        \"Consult a healthcare professional\",\n        \"Follow medical recommendations\",\n        \"Avoid scratching\",\n        \"Take prescribed antibiotics\",\n        \"Practice wound care\"\n    ],\n    \"diets\": [\n        \"['Impetigo Diet', 'Antibiotic treatment', 'Fruits and vegetables', 'Hydration', 'Protein-rich foods']\"\n    ]\n}"}],"_postman_id":"75f29a4c-7482-4555-a5b5-1264f0e16d54"},{"name":"symptoms list","id":"2012c6d1-e5f5-4d3a-80e3-9a09c404903a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzE3MTcyMDY1LCJpYXQiOjE3MTYzMDgwNjUsImp0aSI6IjJiMzU5OTA5NTEyNjRhMDA4MWNjNTNiYTQ1YTZhMjNkIiwidXNlcl9pZCI6ImY5ZmExNGVkLTM0NjQtNGViMC05ZjFiLTdkMzIxYjllODNkZiJ9.uUCtV8cR7uP9sSxzNnsNYscNXY-3RPo23k3tJ1QGdR4","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://smart-doctor.onrender.com/api/v1/model/symptoms/","urlObject":{"path":["symptoms",""],"host":["https://smart-doctor.onrender.com/api/v1/model"],"query":[],"variable":[]}},"response":[{"id":"b49ea602-c999-4a5a-b1b4-0756d436cecc","name":"symptoms list","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzE3MTcyMDY1LCJpYXQiOjE3MTYzMDgwNjUsImp0aSI6IjJiMzU5OTA5NTEyNjRhMDA4MWNjNTNiYTQ1YTZhMjNkIiwidXNlcl9pZCI6ImY5ZmExNGVkLTM0NjQtNGViMC05ZjFiLTdkMzIxYjllODNkZiJ9.uUCtV8cR7uP9sSxzNnsNYscNXY-3RPo23k3tJ1QGdR4","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"symptoms\": \"yellow_crust_ooze,red_sore_around_nose,small_dents_in_nails\"\n}","options":{"raw":{"language":"json"}}},"url":"https://smart-doctor.onrender.com/api/v1/model/symptoms/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 15 Apr 2024 13:40:50 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"CF-Ray","value":"874c597edb590852-IAD"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Allow","value":"GET, HEAD, OPTIONS"},{"key":"Vary","value":"Accept, origin, Accept-Encoding"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"referrer-policy","value":"same-origin"},{"key":"rndr-id","value":"12ac2637-9c52-4e9a"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-frame-options","value":"DENY"},{"key":"x-render-origin-server","value":"gunicorn"},{"key":"Server","value":"cloudflare"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"symptoms\": [\n        \"itching\",\n        \"skin_rash\",\n        \"nodal_skin_eruptions\",\n        \"continuous_sneezing\",\n        \"shivering\",\n        \"chills\",\n        \"joint_pain\",\n        \"stomach_pain\",\n        \"acidity\",\n        \"ulcers_on_tongue\",\n        \"muscle_wasting\",\n        \"vomiting\",\n        \"burning_micturition\",\n        \"spotting_ urination\",\n        \"fatigue\",\n        \"weight_gain\",\n        \"anxiety\",\n        \"cold_hands_and_feets\",\n        \"mood_swings\",\n        \"weight_loss\",\n        \"restlessness\",\n        \"lethargy\",\n        \"patches_in_throat\",\n        \"irregular_sugar_level\",\n        \"cough\",\n        \"high_fever\",\n        \"sunken_eyes\",\n        \"breathlessness\",\n        \"sweating\",\n        \"dehydration\",\n        \"indigestion\",\n        \"headache\",\n        \"yellowish_skin\",\n        \"dark_urine\",\n        \"nausea\",\n        \"loss_of_appetite\",\n        \"pain_behind_the_eyes\",\n        \"back_pain\",\n        \"constipation\",\n        \"abdominal_pain\",\n        \"diarrhoea\",\n        \"mild_fever\",\n        \"yellow_urine\",\n        \"yellowing_of_eyes\",\n        \"acute_liver_failure\",\n        \"fluid_overload\",\n        \"swelling_of_stomach\",\n        \"swelled_lymph_nodes\",\n        \"malaise\",\n        \"blurred_and_distorted_vision\",\n        \"phlegm\",\n        \"throat_irritation\",\n        \"redness_of_eyes\",\n        \"sinus_pressure\",\n        \"runny_nose\",\n        \"congestion\",\n        \"chest_pain\",\n        \"weakness_in_limbs\",\n        \"fast_heart_rate\",\n        \"pain_during_bowel_movements\",\n        \"pain_in_anal_region\",\n        \"bloody_stool\",\n        \"irritation_in_anus\",\n        \"neck_pain\",\n        \"dizziness\",\n        \"cramps\",\n        \"bruising\",\n        \"obesity\",\n        \"swollen_legs\",\n        \"swollen_blood_vessels\",\n        \"puffy_face_and_eyes\",\n        \"enlarged_thyroid\",\n        \"brittle_nails\",\n        \"swollen_extremeties\",\n        \"excessive_hunger\",\n        \"extra_marital_contacts\",\n        \"drying_and_tingling_lips\",\n        \"slurred_speech\",\n        \"knee_pain\",\n        \"hip_joint_pain\",\n        \"muscle_weakness\",\n        \"stiff_neck\",\n        \"swelling_joints\",\n        \"movement_stiffness\",\n        \"spinning_movements\",\n        \"loss_of_balance\",\n        \"unsteadiness\",\n        \"weakness_of_one_body_side\",\n        \"loss_of_smell\",\n        \"bladder_discomfort\",\n        \"foul_smell_of urine\",\n        \"continuous_feel_of_urine\",\n        \"passage_of_gases\",\n        \"internal_itching\",\n        \"toxic_look_(typhos)\",\n        \"depression\",\n        \"irritability\",\n        \"muscle_pain\",\n        \"altered_sensorium\",\n        \"red_spots_over_body\",\n        \"belly_pain\",\n        \"abnormal_menstruation\",\n        \"dischromic _patches\",\n        \"watering_from_eyes\",\n        \"increased_appetite\",\n        \"polyuria\",\n        \"family_history\",\n        \"mucoid_sputum\",\n        \"rusty_sputum\",\n        \"lack_of_concentration\",\n        \"visual_disturbances\",\n        \"receiving_blood_transfusion\",\n        \"receiving_unsterile_injections\",\n        \"coma\",\n        \"stomach_bleeding\",\n        \"distention_of_abdomen\",\n        \"history_of_alcohol_consumption\",\n        \"fluid_overload.1\",\n        \"blood_in_sputum\",\n        \"prominent_veins_on_calf\",\n        \"palpitations\",\n        \"painful_walking\",\n        \"pus_filled_pimples\",\n        \"blackheads\",\n        \"scurring\",\n        \"skin_peeling\",\n        \"silver_like_dusting\",\n        \"small_dents_in_nails\",\n        \"inflammatory_nails\",\n        \"blister\",\n        \"red_sore_around_nose\",\n        \"yellow_crust_ooze\"\n    ]\n}"}],"_postman_id":"2012c6d1-e5f5-4d3a-80e3-9a09c404903a"}],"id":"6f5235f6-304b-4cf6-8ac5-3ec033a08076","_postman_id":"6f5235f6-304b-4cf6-8ac5-3ec033a08076","description":""},{"name":"Profile","item":[{"name":"update profile","id":"77e83523-5e96-4f2b-b2eb-b1c1bb0ac323","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzE3MTcyMDY1LCJpYXQiOjE3MTYzMDgwNjUsImp0aSI6IjJiMzU5OTA5NTEyNjRhMDA4MWNjNTNiYTQ1YTZhMjNkIiwidXNlcl9pZCI6ImY5ZmExNGVkLTM0NjQtNGViMC05ZjFiLTdkMzIxYjllODNkZiJ9.uUCtV8cR7uP9sSxzNnsNYscNXY-3RPo23k3tJ1QGdR4","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"image","type":"file","src":"lM064ryI0/Screenshot from 2024-04-14 20-23-50.png"},{"key":"first_name","value":"caleb","type":"text"},{"key":"last_name","value":"mwema","type":"text"}]},"url":"https://smart-doctor.onrender.com/api/v1/auth/profile/f9fa14ed-3464-4eb0-9f1b-7d321b9e83df/update/","urlObject":{"path":["profile","f9fa14ed-3464-4eb0-9f1b-7d321b9e83df","update",""],"host":["https://smart-doctor.onrender.com/api/v1/auth"],"query":[],"variable":[]}},"response":[{"id":"bb5272d6-f92a-4c6b-8ba3-e3ffc2cfad78","name":"update profile","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzE3MTcyMDY1LCJpYXQiOjE3MTYzMDgwNjUsImp0aSI6IjJiMzU5OTA5NTEyNjRhMDA4MWNjNTNiYTQ1YTZhMjNkIiwidXNlcl9pZCI6ImY5ZmExNGVkLTM0NjQtNGViMC05ZjFiLTdkMzIxYjllODNkZiJ9.uUCtV8cR7uP9sSxzNnsNYscNXY-3RPo23k3tJ1QGdR4","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"image","type":"file","src":"lM064ryI0/Screenshot from 2024-04-14 20-23-50.png"},{"key":"first_name","value":"caleb","type":"text"},{"key":"last_name","value":"mwema","type":"text"}]},"url":"https://smart-doctor.onrender.com/api/v1/auth/profile/f9fa14ed-3464-4eb0-9f1b-7d321b9e83df/update/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 16 May 2024 15:00:41 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"CF-Ray","value":"884c3d16da165451-JIB"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Allow","value":"PUT, PATCH, OPTIONS"},{"key":"Vary","value":"Accept, origin, Accept-Encoding"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"referrer-policy","value":"same-origin"},{"key":"rndr-id","value":"3e5717d1-519f-46db"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-frame-options","value":"DENY"},{"key":"x-render-origin-server","value":"gunicorn"},{"key":"Server","value":"cloudflare"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"f9fa14ed-3464-4eb0-9f1b-7d321b9e83df\",\n    \"email\": \"calebmwema65@gmail.com\",\n    \"first_name\": \"caleb\",\n    \"last_name\": \"mwema\",\n    \"image\": \"http://res.cloudinary.com/di6kcr5zx/image/upload/v1715252171/a4hujie8a0jovjj1ozuo\"\n}"}],"_postman_id":"77e83523-5e96-4f2b-b2eb-b1c1bb0ac323"}],"id":"ec3e5dc4-5b28-4745-972a-778287c64beb","_postman_id":"ec3e5dc4-5b28-4745-972a-778287c64beb","description":""}],"event":[{"listen":"prerequest","script":{"id":"971f271a-291d-4fbf-a3bd-bafb78de02fc","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"d8602409-c410-42b0-803c-274426a891d5","type":"text/javascript","packages":{},"exec":[""]}}],"variable":[{"key":"url","value":"https://smart-doctor.onrender.com/api/v1/","type":"string"},{"key":"access_token","value":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzE3MTcyMDY1LCJpYXQiOjE3MTYzMDgwNjUsImp0aSI6IjJiMzU5OTA5NTEyNjRhMDA4MWNjNTNiYTQ1YTZhMjNkIiwidXNlcl9pZCI6ImY5ZmExNGVkLTM0NjQtNGViMC05ZjFiLTdkMzIxYjllODNkZiJ9.uUCtV8cR7uP9sSxzNnsNYscNXY-3RPo23k3tJ1QGdR4","type":"string"},{"key":"url_local","value":"http://127.0.0.1:8000/api/v1/","type":"string"}]}