皮肤分析
上传宠物皮肤状况照片,分析皮疹、病变、脱毛等皮肤问题。
POST
/v1/skin-analysis图片5 每次调用额度
| 字段 | 类型 | 必填 | 描述 |
|---|---|---|---|
image | string | 是 | Base64 编码的图片数据(JPG/PNG/WEBP,最大 4MB) |
animalType | string | 否 | 分析的动物类型(如:dog、cat、rabbit、hamster) |
language | string | 否 | 响应语言代码(en, zh, es) |
API Playground
语言
请求示例
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"
}'响应示例
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
}
}