Feces Health Analysis
Upload a photo of your pet's feces to analyze potential health indicators and generate a detailed health report.
POST
/v1/feces-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/feces-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": {
"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
}
}