Base64 requests
Send base64 encoded png/jpg/jpeg files to be processed.
Base64 basic requests
POST
https://ai-skin-server.herokuapp.com/v1/base64/basic
Send base64 encoded images to be processed
Headers
Name
Type
Description
Authorization
string
Your api key
Request Body
Name
Type
Description
base64
string
The encoded string you want to send
{
"status": "ok",
"type": "rosacea",
"confidence": 1
}
Base64 raw requests
POST
https://ai-skin-server.herokuapp.com/v1/base64/raw
Headers
Name
Type
Description
Authorization
string
Your api key
Request Body
Name
Type
Description
base64
string
The base64 encoded image you want to send
{
"status": "ok",
"raw": {
"vitiligo": 0,
"rosacea": 1,
"ringworm": 0,
"psoriasis": 1.178797185731606e-13,
"normal": 4.356560001639309e-9,
"melesma": 0,
"melanoma": 0,
"measles": 0,
"lupus": 2.5767971370911662e-25,
"Keratosis-pilaris": 0,
"Cold_sore": 0,
"Chickenpox": 0,
"Cellulitis": 0,
"Blister": 1.0895187485304712e-36,
"Basal Skin Cancer": 1.2149749812343456e-18,
"Actinic Keratosis": 1.2122211108595188e-17,
"Acne": 1.0964792735989442e-33
}
}
Last updated
Was this helpful?