Poomi

粪便分析

上传宠物粪便照片,分析潜在健康指标并生成详细健康报告。

POST/v1/feces-analysis
图片5 每次调用额度
字段类型必填描述
imagestringBase64 编码的图片数据(JPG/PNG/WEBP,最大 4MB)
animalTypestring分析的动物类型(如:dog、cat、rabbit、hamster)
languagestring响应语言代码(en, zh, es)

API Playground

语言

请求示例

bash
curl -X POST https://www.poomi.pet/api/v1/feces-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": {
    "color": "dark yellow-brown",
    "assessment": "Significant mucus coating indicates large intestine irritation. Undigested food particles suggest malabsorption, possibly from pancreatic insufficiency or rapid gut transit. The combination of mucus, undigested food, and soft texture warrants professional evaluation to rule out IBD or infection.",
    "risk_level": "high",
    "consistency": "soft and mucoid",
    "health_score": 3,
    "abnormalities": [
      "excessive mucus coating",
      "undigested food particles"
    ],
    "possible_causes": [
      "intestinal inflammation (IBD)",
      "bacterial infection",
      "dietary intolerance"
    ],
    "recommendations": [
      "Vet visit within 24-48 hours for fecal testing",
      "Collect a fresh stool sample and refrigerate for the vet",
      "Switch to bland diet (boiled chicken and rice) temporarily",
      "Monitor hydration and bowel movement frequency"
    ],
    "health_score_max": 10
  }
}
粪便分析 - Poomi Docs