Skin Analysis
Upload a photo of your pet's skin condition to analyze rashes, lesions, hair loss, and other dermatological indicators.
POST
/v1/skin-analysisImage5 Credits per call
| Field | Type | Required | Description |
|---|---|---|---|
image | string | Yes | Base64-encoded image data (JPG/PNG/WEBP, max 4MB) |
animalType | string | No | Animal type for analysis (e.g. dog, cat, rabbit, hamster) |
language | string | No | Response language code (en, zh, es) |
API Playground
Language
Request Example
bash
curl -X POST https://www.poomi.pet/api/v1/skin-analysis \
-H "Authorization: Bearer pk_your_api_key_here" \
-H "Content-Type: application/json" \
-d '{
"image": "base64_encoded_data",
"animalType": "dog",
"language": "en"
}'Response Example
json200 OK
{
"success": true,
"request_id": "req_xxxxxxxx",
"data": {
"severity": "moderate",
"symptoms": [
"redness",
"hair loss",
"moist weeping surface"
],
"assessment": "Well-defined circular area of acute moist dermatitis on the ventral abdomen. The moist, weeping surface with hair loss indicates active inflammation and likely bacterial colonization. Belly location suggests contact allergy or self-trauma lick cycle. Without intervention, hotspots like this can double in size within 24 hours.",
"health_score": 4,
"area_affected": "belly",
"condition_type": "hotspot",
"possible_causes": [
"allergic contact dermatitis",
"secondary bacterial infection",
"self-trauma from excessive licking"
],
"recommendations": [
"Apply e-collar to stop licking immediately",
"Clean area with dilute chlorhexidine 2x daily",
"Vet visit within 48 hours for possible antibiotics",
"Check for fleas or environmental allergens as triggers"
],
"health_score_max": 10
}
}